feat(client): 無限にダイアログを出すように

Resolve #6525
This commit is contained in:
syuilo 2020-07-12 00:31:37 +09:00
parent 065ec8e170
commit debc0086fa
1 changed files with 6 additions and 2 deletions

View File

@ -92,9 +92,13 @@ export default Vue.extend({
value: 'global', text: this.$t('_timelines.global') value: 'global', text: this.$t('_timelines.global')
}] }]
}, },
showCancelButton: true
}); });
if (canceled) return; if (canceled) {
if (this.column.tl == null) {
this.setType();
}
return;
}
Vue.set(this.column, 'tl', src); Vue.set(this.column, 'tl', src);
this.$store.commit('deviceUser/updateDeckColumn', this.column); this.$store.commit('deviceUser/updateDeckColumn', this.column);
}, },