From c85fb50823d60e4522fd9655b43e0ec7ee3aa937 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Sun, 7 May 2023 15:39:14 +0300 Subject: [PATCH] ui improvements --- .../Form/ELT/Components/ReloadButton.tsx | 15 +++++++++------ .../Calculation/Form/ELT/lib/config.tsx | 19 +++++++++++++++++-- 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/apps/web/Components/Calculation/Form/ELT/Components/ReloadButton.tsx b/apps/web/Components/Calculation/Form/ELT/Components/ReloadButton.tsx index 85593cb..c4315fd 100644 --- a/apps/web/Components/Calculation/Form/ELT/Components/ReloadButton.tsx +++ b/apps/web/Components/Calculation/Form/ELT/Components/ReloadButton.tsx @@ -3,6 +3,7 @@ import { useStore } from '@/stores/hooks'; import { observer } from 'mobx-react-lite'; import { Button } from 'ui/antd'; import { ReloadOutlined } from 'ui/elements/icons'; +import { Flex } from 'ui/grid'; export const ReloadButton = observer( ({ storeSelector, onClick }: { onClick: () => void; storeSelector: StoreSelector }) => { @@ -12,12 +13,14 @@ export const ReloadButton = observer( const hasErrors = validation.hasErrors; return ( -