1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
This commit is contained in:
mike12345567 2020-10-22 17:49:30 +01:00
parent a967645a21
commit 877f0f46a4

View file

@ -81,9 +81,14 @@
<RowSelector bind:value={block.inputs[key]} {bindings} />
{:else if value.customType === 'webhookUrl'}
<div class="copy-area">
<Input disabled="true" thin value={fullWebhookURL(block.inputs[key])} />
<span class="copy-btn" on:click={() => copyToClipboard(fullWebhookURL(block.inputs[key]))}>
<i class="ri-clipboard-line copy-icon"></i>
<Input
disabled="true"
thin
value={fullWebhookURL(block.inputs[key])} />
<span
class="copy-btn"
on:click={() => copyToClipboard(fullWebhookURL(block.inputs[key]))}>
<i class="ri-clipboard-line copy-icon" />
</span>
</div>
{:else if value.type === 'string' || value.type === 'number'}