Disable workspaces when desired

This commit is contained in:
Thorsten Sommer 2024-07-10 13:20:45 +02:00
parent d311cd9783
commit bc56b2d9b0
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -37,6 +37,8 @@
</FooterContent> </FooterContent>
</InnerScrolling> </InnerScrolling>
@if (this.SettingsManager.ConfigurationData.WorkspaceStorageBehavior != WorkspaceStorageBehavior.DISABLE_WORKSPACES)
{
<MudDrawer @bind-Open="@this.workspacesVisible" Width="40em" Height="100%" Anchor="Anchor.Start" Variant="DrawerVariant.Temporary" Elevation="1"> <MudDrawer @bind-Open="@this.workspacesVisible" Width="40em" Height="100%" Anchor="Anchor.Start" Variant="DrawerVariant.Temporary" Elevation="1">
<MudDrawerHeader> <MudDrawerHeader>
<MudStack Row="@true" AlignItems="AlignItems.Center"> <MudStack Row="@true" AlignItems="AlignItems.Center">
@ -50,3 +52,4 @@
<Workspaces/> <Workspaces/>
</MudDrawerContainer> </MudDrawerContainer>
</MudDrawer> </MudDrawer>
}