diff --git a/rsconcept/frontend/src/features/rsform/components/term-graph/toolbar-focused-cst.tsx b/rsconcept/frontend/src/features/rsform/components/term-graph/toolbar-focused-cst.tsx
index 2477a322..c9bcdb61 100644
--- a/rsconcept/frontend/src/features/rsform/components/term-graph/toolbar-focused-cst.tsx
+++ b/rsconcept/frontend/src/features/rsform/components/term-graph/toolbar-focused-cst.tsx
@@ -1,5 +1,7 @@
'use client';
+import clsx from 'clsx';
+
import { type IConstituenta } from '@/features/rsform/models/rsform';
import { MiniButton } from '@/components/control';
@@ -20,29 +22,39 @@ export function ToolbarFocusedCst({ focus, resetFocus, className }: ToolbarFocus
const toggleFocusOutputs = useTermGraphStore(state => state.toggleFocusOutputs);
return (
-
-
-
+
+
+ }
+ onClick={resetFocus}
+ />
+ }
+ onClick={toggleFocusInputs}
+ />
+ }
+ onClick={toggleFocusOutputs}
+ />
+
+
+
Фокус
{focus.alias}
-
-
}
- onClick={resetFocus}
- />
-
}
- onClick={toggleFocusInputs}
- />
-
}
- onClick={toggleFocusOutputs}
- />
);
}
diff --git a/rsconcept/frontend/src/features/rsform/pages/rsform-page/editor-term-graph/toolbar-term-graph.tsx b/rsconcept/frontend/src/features/rsform/pages/rsform-page/editor-term-graph/toolbar-term-graph.tsx
index 4a5f53a9..e47580df 100644
--- a/rsconcept/frontend/src/features/rsform/pages/rsform-page/editor-term-graph/toolbar-term-graph.tsx
+++ b/rsconcept/frontend/src/features/rsform/pages/rsform-page/editor-term-graph/toolbar-term-graph.tsx
@@ -160,7 +160,7 @@ export function ToolbarTermGraph({ className }: ToolbarTermGraphProps) {
-