aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTusooa Zhu <tusooa@kazv.moe>2021-08-07 19:21:00 -0400
committerTusooa Zhu <tusooa@kazv.moe>2022-03-07 19:19:30 -0500
commitd7da9f80a7ddf98ffc9438f6e50af525ff76aef1 (patch)
tree1266a978b6f961a9d5e28181d8d82578eaa56523 /src
parent6b990ba3686e02494dc7908ce4c981601c8957cf (diff)
Fallback to simpleTree style
Diffstat (limited to 'src')
-rw-r--r--src/components/conversation/conversation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js
index 39a6f4f1..858a9ddb 100644
--- a/src/components/conversation/conversation.js
+++ b/src/components/conversation/conversation.js
@@ -77,7 +77,7 @@ const conversation = {
return 4
},
displayStyle () {
- return this.$store.state.config.conversationDisplay
+ return this.$store.state.config.conversationDisplay || 'simple_tree'
},
isTreeView () {
return this.displayStyle === 'tree' || this.displayStyle === 'simple_tree'