Skip to content

Commit 477176c

Browse files
committed
[frontend] Hide right sidebar when editing custom views
1 parent 0e455ce commit 477176c

File tree

1 file changed

+10
-1
lines changed
  • opencti-platform/opencti-front/src/private/components/settings/customization

1 file changed

+10
-1
lines changed

opencti-platform/opencti-front/src/private/components/settings/customization/Root.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,16 @@ const RootCustomization = () => {
2727

2828
return (
2929
<>
30-
<CustomizationMenu />
30+
<Routes>
31+
<Route
32+
path="/entity_types/:subTypeId/custom-views/:customViewId"
33+
element={null}
34+
/>
35+
<Route
36+
path="*"
37+
element={<CustomizationMenu />}
38+
/>
39+
</Routes>
3140
<Suspense fallback={<Loader />}>
3241
<Routes>
3342
<Route

0 commit comments

Comments
 (0)