From 190fbeedb4f9f73f42795333628b46de8777a2f6 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 3 Aug 2026 07:10:41 +0000 Subject: [PATCH] Improve pending OpenCode restart counter contrast Place a high-contrast count badge first on the Apply & Restart action so pending settings changes remain obvious in the Settings chrome. Co-authored-by: Serhii Dziupin --- .../views/PendingOpenCodeRestartAction.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/ui/src/components/views/PendingOpenCodeRestartAction.tsx b/packages/ui/src/components/views/PendingOpenCodeRestartAction.tsx index 22cf0540..25d19a42 100644 --- a/packages/ui/src/components/views/PendingOpenCodeRestartAction.tsx +++ b/packages/ui/src/components/views/PendingOpenCodeRestartAction.tsx @@ -61,21 +61,21 @@ export const PendingOpenCodeRestartAction: React.FC void handleApply()} className={cn('gap-1.5 shadow-sm', className)} > + {isApplying ? t('settings.view.pendingRestart.applying') : t('settings.view.actions.applyAndRestartOpenCode')} - ); };