style(chase): no question marks — the dashed dimmed chip says it alone

This commit is contained in:
2026-08-30 21:38:14 +02:00
parent e4028f4bcd
commit 3a94a69be3
+2 -2
View File
@@ -1153,7 +1153,7 @@ export function DecodesPanel({ decodes, txMsgs, txState, txStates, spotStatus, o
title={e?.unconf_status ? t('dec.unconfTip') : undefined}
className={cn('rounded px-1 py-px text-[10px] font-bold uppercase tracking-wide shrink-0', b.cls,
e?.unconf_status && 'opacity-60 border border-dashed border-current bg-transparent')}>
{t(b.label)}{e?.unconf_status ? '?' : ''}
{t(b.label)}
</span>
))}
{extras.map((b) => {
@@ -1174,7 +1174,7 @@ export function DecodesPanel({ decodes, txMsgs, txState, txStates, spotStatus, o
style={unconf
? { borderColor: c, color: c, opacity: 0.45, borderStyle: 'dashed' }
: { borderColor: c, color: c }}>
{unconf ? t(b.label) + '?' : t(b.label)}
{t(b.label)}
</span>
);
})}