diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-07-12 00:31:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-07-12 00:31:37 +0900 |
| commit | debc0086fab6c131cf37f00e8b03fbe5d6f09c64 (patch) | |
| tree | 128d3d650242f8a74371a8567199e18f4029c56b /src/client | |
| parent | fix(client): Fix timeline widget setting definition (diff) | |
| download | sharkey-debc0086fab6c131cf37f00e8b03fbe5d6f09c64.tar.gz sharkey-debc0086fab6c131cf37f00e8b03fbe5d6f09c64.tar.bz2 sharkey-debc0086fab6c131cf37f00e8b03fbe5d6f09c64.zip | |
feat(client): 無限にダイアログを出すように
Resolve #6525
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/components/deck/tl-column.vue | 8 |
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); }, |