From 3f992c49abb9acba4ac7dfbb3f95765e577e62c0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 30 Nov 2022 13:33:52 +0300 Subject: [PATCH] Fix bug --- apps/documenteditor/main/app/view/ListSettingsDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/ListSettingsDialog.js b/apps/documenteditor/main/app/view/ListSettingsDialog.js index 11c9fd3ed..7d4e6702e 100644 --- a/apps/documenteditor/main/app/view/ListSettingsDialog.js +++ b/apps/documenteditor/main/app/view/ListSettingsDialog.js @@ -702,7 +702,7 @@ define([ this.btnMore.on('click', _.bind(this.onMoreClick, this)); this.on('animate:after', _.bind(this.onAnimateAfter, this)); - if (Common.localStorage.getBool("de-hide-multilevel-settings", true)) + if (this.type == 2 && Common.localStorage.getBool("de-hide-multilevel-settings", true)) this.onMoreClick(this.btnMore); this.afterRender();