From 5fa41d98ee9b75b3a73032ef73bf131aa9618475 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Wed, 12 Oct 2022 11:09:40 +0300 Subject: [PATCH] Add data-origin prop for status bar items Signed-off-by: Alex Andreev --- src/renderer/components/status-bar/status-bar.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/renderer/components/status-bar/status-bar.tsx b/src/renderer/components/status-bar/status-bar.tsx index 1214a104c7..66548f130f 100644 --- a/src/renderer/components/status-bar/status-bar.tsx +++ b/src/renderer/components/status-bar/status-bar.tsx @@ -22,18 +22,18 @@ const NonInjectedStatusBar = observer(({ items }: Dependencies & StatusBarProps) const { left, right } = items.get(); return ( -
+
{left.map((Item, index) => ( -
- +
+ {}
))}
{right.map((Item, index) => ( -
- +
+ {}
))}