🐛 Fix: Default value was always used

pull/4099/head
TheDanniCraft 12 months ago
parent 4dc74c42ea
commit fd45ef2d7a

@ -43,7 +43,9 @@
<script>
export default {
mounted() {
this.$parent.notification.discordChannelType = "normal";
if (!this.$parent.notification.discordChannelType) {
this.$parent.notification.discordChannelType = "normal";
}
}
};
</script>

Loading…
Cancel
Save