1
0
Fork 0
mirror of synced 2024-07-08 15:56:23 +12:00

Show that admins and builders can access all apps

This commit is contained in:
Andrew Kingston 2022-08-08 11:39:32 +01:00
parent 0f27af90c7
commit 8f63abe923

View file

@ -19,6 +19,7 @@
Modal,
notifications,
Divider,
Banner,
StatusLight,
} from "@budibase/bbui"
import { onMount } from "svelte"
@ -312,14 +313,13 @@
{/if}
<Layout gap="S" noPadding>
<div>
<Heading size="S">Apps</Heading>
{#if privileged}
<Body size="S">This user's role grants admin access to all apps</Body>
{/if}
</div>
<Heading size="S">Apps</Heading>
<List>
{#if availableApps.length}
{#if privileged}
<Banner showCloseButton={false}>
This user's role grants admin access to all apps
</Banner>
{:else if availableApps.length}
{#each availableApps as app}
<ListItem
title={app.name}