From 28e6294d2c1077ed236ef9a7f27f4f62b8f4ef7e Mon Sep 17 00:00:00 2001 From: André Oliveira Date: Thu, 5 May 2022 01:28:21 +0100 Subject: Fix order of the Settings Icon on sidebar when Todo is enable --- src/components/layout/Sidebar.js | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js index 91178a370..0d3a7c20c 100644 --- a/src/components/layout/Sidebar.js +++ b/src/components/layout/Sidebar.js @@ -233,26 +233,6 @@ class Sidebar extends Component { ) : null} - {!hideSettingsButton && !this.state.isCollapsed ? ( - - ) : null} {todosStore.isFeatureEnabledByUser && !this.state.isCollapsed ? ( + ) : null} ); } -- cgit v1.2.3-54-g00ecf