fix(ui): preserve LTR left sidebar in RTL

Keep the left sidebar geometry stable across RTL locales and retain the default settings-tab order.

Refs #17
This commit is contained in:
NimBold
2026-07-19 04:07:33 +03:30
parent c427aa2f7a
commit f47eb7507f
2 changed files with 27 additions and 31 deletions
+4 -1
View File
@@ -958,7 +958,10 @@ function App() {
marginInlineEnd: isSidebarVisible || !isSidebarOnRight ? 0 : -sidebarWidth
}}
>
<div className="app-sidebar-panel h-full w-full">
<div
className="app-sidebar-panel h-full w-full"
dir={isSidebarOnRight ? undefined : 'ltr'}
>
<Sidebar
selectedFilter={filter}
onSelectFilter={(f) => {