Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
Turn off autocomplete on Webhook URL input
Browse files Browse the repository at this point in the history
  • Loading branch information
rojvv authored Dec 5, 2023
1 parent 9a9d937 commit c202a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/vue/webhook-utility/ManageWebhook.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const deleteWebhook = withRefresh(deleteWebhookRaw);
{{ setWebhookError || deleteWebhookError }}
</div>
<div class="mb-5 flex flex-col">
<input class="input" v-model="newUrl" type="text" placeholder="Webhook URL" id="url" />
<input class="input" v-model="newUrl" type="text" placeholder="Webhook URL" id="url" autocomplete="off" />
</div>
<div class="mb-1 flex flex-col">
<input class="input mt-1.5" id="secret" type="password" placeholder="Webhook secret (optional)" v-model="secret" />
Expand Down

0 comments on commit c202a4d

Please sign in to comment.