Browse Source
Move default setting to child component
pull/427/head
zsxeee
4 years ago
No known key found for this signature in database
GPG Key ID: 895CFFFD8313B3B8
3 changed files with
10 additions and
2 deletions
-
src/components/NotificationDialog.vue
-
src/components/notifications/Gotify.vue
-
src/components/notifications/SMTP.vue
|
|
@ -150,8 +150,6 @@ export default { |
|
|
|
|
|
|
|
// Set Default value here |
|
|
|
this.notification.type = this.notificationTypes[0]; |
|
|
|
this.notification.gotifyPriority = 8; |
|
|
|
this.notification.smtpSecure = false; |
|
|
|
} |
|
|
|
|
|
|
|
this.modal.show() |
|
|
|
|
|
@ -23,5 +23,10 @@ export default { |
|
|
|
components: { |
|
|
|
HiddenInput, |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
if (typeof this.$parent.notification.gotifyPriority === "undefined") { |
|
|
|
this.$parent.notification.gotifyPriority = 8; |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
@ -66,5 +66,10 @@ export default { |
|
|
|
components: { |
|
|
|
HiddenInput, |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
if (typeof this.$parent.notification.smtpSecure === "undefined") { |
|
|
|
this.$parent.notification.smtpSecure = false; |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
</script> |
|
|
|