This commit is contained in:
syuilo 2020-09-20 11:14:27 +09:00
parent c50342a19e
commit fe5171d1c2
2 changed files with 3 additions and 3 deletions

View file

@ -61,7 +61,7 @@ export default defineComponent({
this.useGlobalSetting = this.includingTypes === null && this.showGlobalToggle;
for (const type of this.notificationTypes) {
Vue.set(this.typesMap, type, this.includingTypes === null || this.includingTypes.includes(type));
this.typesMap[type] = this.includingTypes === null || this.includingTypes.includes(type);
}
},