Rename component
This commit is contained in:
parent
3c03ef2af7
commit
e5525f8198
|
@ -1,6 +1,6 @@
|
|||
<script>
|
||||
import GroupIcon from "./GroupIcon.svelte"
|
||||
import ScimInfo from "../../_components/SCIMInfo.svelte"
|
||||
import ActiveDirectoryInfo from "../../_components/ActiveDirectoryInfo.svelte"
|
||||
|
||||
export let value
|
||||
export let row
|
||||
|
@ -16,7 +16,7 @@
|
|||
<div class="text">-</div>
|
||||
{/if}
|
||||
{#if row.scimInfo?.isSync}
|
||||
<ScimInfo iconSize="XS" />
|
||||
<ActiveDirectoryInfo iconSize="XS" />
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
import { setContext } from "svelte"
|
||||
|
||||
import RemoveUserTableRenderer from "../_components/RemoveUserTableRenderer.svelte"
|
||||
import ScimInfo from "../../_components/SCIMInfo.svelte"
|
||||
import ActiveDirectoryInfo from "../../_components/ActiveDirectoryInfo.svelte"
|
||||
|
||||
export let groupId
|
||||
export let readonly
|
||||
|
@ -64,7 +64,7 @@
|
|||
{#if !readonly}
|
||||
<EditUserPicker {groupId} onUsersUpdated={fetchGroupUsers.getInitialData} />
|
||||
{:else}
|
||||
<ScimInfo text="User synced externally" />
|
||||
<ActiveDirectoryInfo text="User synced externally" />
|
||||
{/if}
|
||||
|
||||
<div class="controls-right">
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
import AppNameTableRenderer from "./_components/AppNameTableRenderer.svelte"
|
||||
import AppRoleTableRenderer from "./_components/AppRoleTableRenderer.svelte"
|
||||
import { sdk } from "@budibase/shared-core"
|
||||
import ScimInfo from "../_components/SCIMInfo.svelte"
|
||||
import ActiveDirectoryInfo from "../_components/ActiveDirectoryInfo.svelte"
|
||||
|
||||
export let userId
|
||||
|
||||
|
@ -276,7 +276,7 @@
|
|||
<div class="details-title">
|
||||
<Heading size="S">Details</Heading>
|
||||
{#if user?.scimInfo?.isSync}
|
||||
<ScimInfo text="User synced from your AD" />
|
||||
<ActiveDirectoryInfo text="User synced from your AD" />
|
||||
{/if}
|
||||
</div>
|
||||
<div class="fields">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script>
|
||||
import ScimInfo from "../../_components/SCIMInfo.svelte"
|
||||
import ActiveDirectoryInfo from "../../_components/ActiveDirectoryInfo.svelte"
|
||||
|
||||
export let value
|
||||
export let row
|
||||
|
@ -7,5 +7,5 @@
|
|||
|
||||
{value}
|
||||
{#if row.scimInfo?.isSync}
|
||||
<ScimInfo iconSize="XS" />
|
||||
<ActiveDirectoryInfo iconSize="XS" />
|
||||
{/if}
|
||||
|
|
Loading…
Reference in New Issue