From 3a94a69be39f5fda733dea7fad33b53bf1566534 Mon Sep 17 00:00:00 2001 From: rouggy Date: Sun, 30 Aug 2026 21:38:14 +0200 Subject: [PATCH] =?UTF-8?q?style(chase):=20no=20question=20marks=20?= =?UTF-8?q?=E2=80=94=20the=20dashed=20dimmed=20chip=20says=20it=20alone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/DecodesPanel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/DecodesPanel.tsx b/frontend/src/components/DecodesPanel.tsx index b48cc03..0540c04 100644 --- a/frontend/src/components/DecodesPanel.tsx +++ b/frontend/src/components/DecodesPanel.tsx @@ -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)} ))} {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)} ); })}