1
0
Fork 0
mirror of synced 2024-09-09 22:16:26 +12:00

Added button options to the prompt user action. (#14031)

This commit is contained in:
Conor Webb 2024-07-01 08:29:24 +01:00 committed by GitHub
parent c417a5e627
commit 323a855d81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,7 @@
<div class="params">
<Label small>Title</Label>
<DrawerBindableInput
placeholder="Title"
placeholder="Prompt User"
value={parameters.customTitleText}
on:change={e => (parameters.customTitleText = e.detail)}
{bindings}
@ -30,6 +30,22 @@
on:change={e => (parameters.confirmText = e.detail)}
{bindings}
/>
<Label small>Confirm Text</Label>
<DrawerBindableInput
placeholder="Confirm"
value={parameters.confirmButtonText}
on:change={e => (parameters.confirmButtonText = e.detail)}
{bindings}
/>
<Label small>Cancel Text</Label>
<DrawerBindableInput
placeholder="Cancel"
value={parameters.cancelButtonText}
on:change={e => (parameters.cancelButtonText = e.detail)}
{bindings}
/>
</div>
</div>