fix(ui): fix fluxer input styling; make discord input hidden (#7110)

This commit is contained in:
riccardo
2026-03-08 03:43:59 +01:00
committed by GitHub
parent c60210124a
commit f45467bd7b
2 changed files with 3 additions and 3 deletions
+3 -2
View File
@@ -1,11 +1,10 @@
<template>
<div class="mb-3">
<label for="discord-webhook-url" class="form-label">{{ $t("Discord Webhook URL") }}</label>
<input
<HiddenInput
id="discord-webhook-url"
v-model="$parent.notification.discordWebhookUrl"
type="text"
class="form-control"
required
autocomplete="false"
/>
@@ -144,11 +143,13 @@
</div>
</template>
<script>
import HiddenInput from "../HiddenInput.vue";
import TemplatedTextarea from "../TemplatedTextarea.vue";
export default {
components: {
TemplatedTextarea,
HiddenInput,
},
mounted() {
if (!this.$parent.notification.discordChannelType) {
-1
View File
@@ -5,7 +5,6 @@
id="fluxer-webhook-url"
v-model="$parent.notification.fluxerWebhookUrl"
type="url"
class="form-control"
required
autocomplete="false"
/>