aboutsummaryrefslogtreecommitdiff
path: root/src/components/thread_tree/thread_tree.vue
diff options
context:
space:
mode:
authorTusooa Zhu <tusooa@kazv.moe>2021-08-08 09:46:10 -0400
committerTusooa Zhu <tusooa@kazv.moe>2022-03-07 19:19:30 -0500
commitbdf631c2c4d57f855831f8a6c747af7c5ccb6e70 (patch)
tree2a3a84a333391e078cd807dceb9161bc794a00fa /src/components/thread_tree/thread_tree.vue
parent3addc36c96edff6308bd87c577f66e83b570722f (diff)
Fix the bug where toggleShowingTall does not work
Diffstat (limited to 'src/components/thread_tree/thread_tree.vue')
-rw-r--r--src/components/thread_tree/thread_tree.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/thread_tree/thread_tree.vue b/src/components/thread_tree/thread_tree.vue
index b803f80f..fa1e5f86 100644
--- a/src/components/thread_tree/thread_tree.vue
+++ b/src/components/thread_tree/thread_tree.vue
@@ -22,7 +22,7 @@
:controlled-showing-tall="currentProp.showingTall"
:controlled-expanding-subject="currentProp.expandingSubject"
:controlled-showing-long-subject="currentProp.showingLongSubject"
- :controlled-toggle-showing-tall="() => toggleCurrentProp('ShowingTall')"
+ :controlled-toggle-showing-tall="() => toggleCurrentProp('showingTall')"
:controlled-toggle-expanding-subject="() => toggleCurrentProp('expandingSubject')"
:controlled-toggle-showing-long-subject="() => toggleCurrentProp('showingLongSubject')"
:dive="dive ? () => dive(status.id) : undefined"