From 734b8d4dde9e14e629eb1013d333656489156bf3 Mon Sep 17 00:00:00 2001 From: lobsam Date: Thu, 5 Dec 2024 16:33:42 +0530 Subject: [PATCH] small change --- static/js/ReaderPanel.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/ReaderPanel.jsx b/static/js/ReaderPanel.jsx index 81449eac05..26419d5012 100644 --- a/static/js/ReaderPanel.jsx +++ b/static/js/ReaderPanel.jsx @@ -581,7 +581,7 @@ class ReaderPanel extends Component { return this.state.width > 500 ? this.state.settings.biLayout : "stacked"; } // dont allow continuous mode in sidebar since it's currently not possible to control layout from sidebar - if (this.state.mode === "Connections") {return "segmented"} + if (this.state.mode === "Connections") {return "continuous"} const category = this.currentCategory(); const option = (category && (category === "Tanakh" || category === "Talmud")) ? "layout" + category : "layoutDefault"; return this.state.settings[option];