diff --git a/dashboard/src/components/CatchAllSettingsItem.vue b/dashboard/src/components/CatchAllSettingsItem.vue index 98f7edc79..5d9e46da2 100644 --- a/dashboard/src/components/CatchAllSettingsItem.vue +++ b/dashboard/src/components/CatchAllSettingsItem.vue @@ -7,7 +7,7 @@ import DomainsModel from '../models/DomainsModel.js'; import MailModel from '../models/MailModel.js'; import MailboxesModel from '../models/MailboxesModel.js'; -const props = defineProps([ 'domainConfig' ]); +const props = defineProps([ 'domainConfig', 'disabled' ]); const domainsModel = DomainsModel.create(); const mailModel = MailModel.create(); @@ -75,8 +75,8 @@ onMounted(async () => {
- - + +
diff --git a/dashboard/src/components/ImagePicker.vue b/dashboard/src/components/ImagePicker.vue index 6d2bf2438..8e432c433 100644 --- a/dashboard/src/components/ImagePicker.vue +++ b/dashboard/src/components/ImagePicker.vue @@ -4,7 +4,7 @@ import { useTemplateRef, ref } from 'vue'; const fileInput = useTemplateRef('fileInput'); -const props = defineProps(['src', 'fallbackSrc', 'size', 'maxSize', 'displayHeight', 'displayWidth']); +const props = defineProps(['src', 'fallbackSrc', 'size', 'maxSize', 'displayHeight', 'displayWidth', 'disabled']); const emits = defineEmits(['changed']); defineExpose({ clear(originalSrc = '') { @@ -113,10 +113,10 @@ function onError() {