Change default check of null to unexpected

This commit is contained in:
elweyn 2022-03-11 10:58:17 +01:00
parent 119f9e9734
commit f206585b67

View File

@ -43,7 +43,7 @@ export default {
},
data() {
return {
currentValue: this.defaultValue !== null ? this.defaultValue : '',
currentValue: this.defaultValue !== undefined ? this.defaultValue : '',
}
},
computed: {