diff --git a/src/frontend/src/components/canvasControlsComponent/index.tsx b/src/frontend/src/components/canvasControlsComponent/index.tsx index 2eed2883d0b1..b4a8e29c4579 100644 --- a/src/frontend/src/components/canvasControlsComponent/index.tsx +++ b/src/frontend/src/components/canvasControlsComponent/index.tsx @@ -108,7 +108,9 @@ const CanvasControls = ({ children }) => { tooltipText={isInteractive ? "Lock" : "Unlock"} onClick={onToggleInteractivity} backgroundClasses={isInteractive ? "" : "bg-destructive"} - iconClasses={isInteractive ? "" : "text-primary-foreground"} + iconClasses={ + isInteractive ? "" : "text-primary-foreground dark:text-primary" + } testId="lock_unlock" /> {children} diff --git a/src/frontend/src/components/flowToolbarComponent/index.tsx b/src/frontend/src/components/flowToolbarComponent/index.tsx index ece682615fdb..cc2ece25df4a 100644 --- a/src/frontend/src/components/flowToolbarComponent/index.tsx +++ b/src/frontend/src/components/flowToolbarComponent/index.tsx @@ -76,10 +76,10 @@ export default function FlowToolbar(): JSX.Element {