summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-07-12 00:31:37 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-07-12 00:31:37 +0900
commitdebc0086fab6c131cf37f00e8b03fbe5d6f09c64 (patch)
tree128d3d650242f8a74371a8567199e18f4029c56b /src
parentfix(client): Fix timeline widget setting definition (diff)
downloadsharkey-debc0086fab6c131cf37f00e8b03fbe5d6f09c64.tar.gz
sharkey-debc0086fab6c131cf37f00e8b03fbe5d6f09c64.tar.bz2
sharkey-debc0086fab6c131cf37f00e8b03fbe5d6f09c64.zip
feat(client): 無限にダイアログを出すように
Resolve #6525
Diffstat (limited to 'src')
-rw-r--r--src/client/components/deck/tl-column.vue8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/client/components/deck/tl-column.vue b/src/client/components/deck/tl-column.vue
index c3ee67af3a..b853820804 100644
--- a/src/client/components/deck/tl-column.vue
+++ b/src/client/components/deck/tl-column.vue
@@ -92,9 +92,13 @@ export default Vue.extend({
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);
this.$store.commit('deviceUser/updateDeckColumn', this.column);
},