From debc0086fab6c131cf37f00e8b03fbe5d6f09c64 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sun, 12 Jul 2020 00:31:37 +0900
Subject: [PATCH] =?UTF-8?q?feat(client):=20=E7=84=A1=E9=99=90=E3=81=AB?=
 =?UTF-8?q?=E3=83=80=E3=82=A4=E3=82=A2=E3=83=AD=E3=82=B0=E3=82=92=E5=87=BA?=
 =?UTF-8?q?=E3=81=99=E3=82=88=E3=81=86=E3=81=AB?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Resolve #6525
---
 src/client/components/deck/tl-column.vue | 8 ++++++--
 1 file 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);
 		},