PR comments.

This commit is contained in:
mike12345567 2022-09-26 18:26:16 +01:00
parent b71ed1ca82
commit d8fdd43e04
1 changed files with 5 additions and 3 deletions

View File

@ -39,12 +39,14 @@
disabled={confirmDisabled} disabled={confirmDisabled}
> >
{#if !selectingRole} {#if !selectingRole}
<Body>Select the app to add to the <i>"{group.name}"</i> group.</Body> <Body
>Select an app to assign roles for members of <i>"{group.name}"</i></Body
>
<Select bind:value={selectedApp} options={appOptions} /> <Select bind:value={selectedApp} options={appOptions} />
{:else} {:else}
<Body <Body
>Pick the role this group will appear as in the <i>"{selectedApp.name}"</i >Select the role that all members of "<i>{group.name}</i>" will have for
> app.</Body <i>"{selectedApp.name}"</i></Body
> >
<RoleSelect allowPublic={false} bind:value={selectedRoleId} /> <RoleSelect allowPublic={false} bind:value={selectedRoleId} />
{/if} {/if}