1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Fix for permission spamming in the automation UI.

This commit is contained in:
mike12345567 2022-07-22 18:43:35 +01:00
parent 295c2e5c68
commit 34c55cdb2d

View file

@ -52,8 +52,9 @@
x => x.blockToLoop === block.id x => x.blockToLoop === block.id
) )
$: setPermissions(role) $: isAppAction = block?.stepId === TriggerStepID.APP
$: getPermissions(automationId) $: isAppAction && setPermissions(role)
$: isAppAction && getPermissions(automationId)
async function setPermissions(role) { async function setPermissions(role) {
if (!role || !automationId) { if (!role || !automationId) {
@ -238,7 +239,7 @@
</div> </div>
{/if} {/if}
{#if block.stepId === TriggerStepID.APP} {#if isAppAction}
<Label>Role</Label> <Label>Role</Label>
<RoleSelect bind:value={role} /> <RoleSelect bind:value={role} />
{/if} {/if}