1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +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
)
$: setPermissions(role)
$: getPermissions(automationId)
$: isAppAction = block?.stepId === TriggerStepID.APP
$: isAppAction && setPermissions(role)
$: isAppAction && getPermissions(automationId)
async function setPermissions(role) {
if (!role || !automationId) {
@ -238,7 +239,7 @@
</div>
{/if}
{#if block.stepId === TriggerStepID.APP}
{#if isAppAction}
<Label>Role</Label>
<RoleSelect bind:value={role} />
{/if}