aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/layout/AppLayoutContainer.tsx
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2024-04-18 07:32:48 +0100
committerLibravatar GitHub <noreply@github.com>2024-04-18 07:32:48 +0100
commit101a18cd41f53b62c77d16442db955855f1f2703 (patch)
tree3a0d0475647ad8c018126a8f127e8bf6c7774ce9 /src/containers/layout/AppLayoutContainer.tsx
parentRemove pnpm cache (since its suspected that sqlite cache is corrupted) (#1703) (diff)
downloadferdium-app-101a18cd41f53b62c77d16442db955855f1f2703.tar.gz
ferdium-app-101a18cd41f53b62c77d16442db955855f1f2703.tar.zst
ferdium-app-101a18cd41f53b62c77d16442db955855f1f2703.zip
feat: hide all services workspace (#1713)
* feat: hide all services workspace * fix: change from 'show' to 'hide'
Diffstat (limited to 'src/containers/layout/AppLayoutContainer.tsx')
-rw-r--r--src/containers/layout/AppLayoutContainer.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/containers/layout/AppLayoutContainer.tsx b/src/containers/layout/AppLayoutContainer.tsx
index 3f8aad0ac..b18aa4690 100644
--- a/src/containers/layout/AppLayoutContainer.tsx
+++ b/src/containers/layout/AppLayoutContainer.tsx
@@ -80,6 +80,8 @@ class AppLayoutContainer extends Component<IProps> {
80 ? workspaceStore.getWorkspaceServices(workspace).map(s => s.name) 80 ? workspaceStore.getWorkspaceServices(workspace).map(s => s.name)
81 : services.all.map(s => s.name) 81 : services.all.map(s => s.name)
82 } 82 }
83 stores={this.props.stores}
84 actions={this.props.actions}
83 /> 85 />
84 ); 86 );
85 87