From b5afb6e24251bd8d471c79861ef64a99f061ad7f Mon Sep 17 00:00:00 2001 From: IRBorisov <8611739+IRBorisov@users.noreply.github.com> Date: Wed, 5 Jun 2024 14:43:52 +0300 Subject: [PATCH] Small UI improvements --- .../frontend/src/components/ui/Modal.tsx | 3 +++ .../src/dialogs/DlgChangeLocation.tsx | 5 ++-- .../src/pages/LibraryPage/LibraryPage.tsx | 4 ++-- .../{ViewLibrary.tsx => LibraryTable.tsx} | 23 +++++++++++++++---- .../frontend/src/pages/OssPage/OssTabs.tsx | 2 +- .../frontend/src/pages/RSFormPage/RSTabs.tsx | 2 +- .../ViewConstituents/ViewConstituents.tsx | 2 +- 7 files changed, 29 insertions(+), 12 deletions(-) rename rsconcept/frontend/src/pages/LibraryPage/{ViewLibrary.tsx => LibraryTable.tsx} (88%) diff --git a/rsconcept/frontend/src/components/ui/Modal.tsx b/rsconcept/frontend/src/components/ui/Modal.tsx index aa532d61..789129ed 100644 --- a/rsconcept/frontend/src/components/ui/Modal.tsx +++ b/rsconcept/frontend/src/components/ui/Modal.tsx @@ -21,6 +21,7 @@ export interface ModalProps extends CProps.Styling { readonly?: boolean; canSubmit?: boolean; + overflowVisible?: boolean; hideWindow: () => void; onSubmit?: () => void; @@ -39,6 +40,7 @@ function Modal({ submitInvalidTooltip, className, children, + overflowVisible, submitText = 'Продолжить', ...restProps }: ModalProps) { @@ -86,6 +88,7 @@ function Modal({