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,7 +37,9 @@
</FooterContent>
</InnerScrolling>
<MudDrawer @bind-Open="@this.workspacesVisible" Width="40em" Height="100%" Anchor="Anchor.Start" Variant="DrawerVariant.Temporary" Elevation="1">
@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">
<MudDrawerHeader>
<MudStack Row="@true" AlignItems="AlignItems.Center">
<MudText Typo="Typo.h6" Class="mr-3">
@ -49,4 +51,5 @@
<MudDrawerContainer Class="ml-6">
<Workspaces/>
</MudDrawerContainer>
</MudDrawer>
</MudDrawer>
}