diff --git a/frontend/src/Editor/Components/Tabs.jsx b/frontend/src/Editor/Components/Tabs.jsx index ca0e3f29ea..2b8a67a2b4 100644 --- a/frontend/src/Editor/Components/Tabs.jsx +++ b/frontend/src/Editor/Components/Tabs.jsx @@ -77,6 +77,11 @@ export const Tabs = function Tabs({ ? { color: parsedHighlightColor, borderBottom: `1px solid ${parsedHighlightColor}` } : {} } + ref={(el) => { + if (el && currentTab == tab.id) { + el.style.setProperty('color', parsedHighlightColor, 'important'); + } + }} > {tab.title}