summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
authorrinsuki <428rinsuki+git@gmail.com>2020-07-12 15:33:04 +0900
committerGitHub <noreply@github.com>2020-07-12 15:33:04 +0900
commitd4b0761549bc12706728a04e9deb6f0abd5028b1 (patch)
tree6b4093b36296dc124a4d5e886ab95ae43e9dc260 /src/client/components
parent12.41.1 (diff)
downloadmisskey-d4b0761549bc12706728a04e9deb6f0abd5028b1.tar.gz
misskey-d4b0761549bc12706728a04e9deb6f0abd5028b1.tar.bz2
misskey-d4b0761549bc12706728a04e9deb6f0abd5028b1.zip
Deckのタイムラインカラムの初回種別選択でキャンセルが押されたらタイムラインカラムを消すように (#6535)
Fix #6531
Diffstat (limited to 'src/client/components')
-rw-r--r--src/client/components/deck/tl-column.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/deck/tl-column.vue b/src/client/components/deck/tl-column.vue
index b853820804..d2d1749c7c 100644
--- a/src/client/components/deck/tl-column.vue
+++ b/src/client/components/deck/tl-column.vue
@@ -95,7 +95,7 @@ export default Vue.extend({
});
if (canceled) {
if (this.column.tl == null) {
- this.setType();
+ this.$store.commit('deviceUser/removeDeckColumn', this.column.id);
}
return;
}