From 95c9d58f43f998dbfa9fb431ae6b08d30bc524ca Mon Sep 17 00:00:00 2001 From: Ivan <8611739+IRBorisov@users.noreply.github.com> Date: Tue, 5 Aug 2025 14:01:22 +0300 Subject: [PATCH] M: small ui fix --- .../features/rsform/dialogs/dlg-edit-cst/form-edit-cst.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rsconcept/frontend/src/features/rsform/dialogs/dlg-edit-cst/form-edit-cst.tsx b/rsconcept/frontend/src/features/rsform/dialogs/dlg-edit-cst/form-edit-cst.tsx index c6717054..c9fa3d73 100644 --- a/rsconcept/frontend/src/features/rsform/dialogs/dlg-edit-cst/form-edit-cst.tsx +++ b/rsconcept/frontend/src/features/rsform/dialogs/dlg-edit-cst/form-edit-cst.tsx @@ -74,7 +74,7 @@ export function FormEditCst({ target, schema }: FormEditCstProps) { fitContent spellCheck label='Термин' - className='max-h-15' + className='max-h-15 disabled:min-h-9' {...register('item_data.term_raw')} error={errors.item_data?.term_raw} /> @@ -158,7 +158,7 @@ export function FormEditCst({ target, schema }: FormEditCstProps) { fitContent spellCheck label={isBasic ? 'Конвенция' : 'Комментарий'} - className='max-h-20' + className='max-h-20 disabled:min-h-9' {...register('item_data.convention')} error={errors.item_data?.convention} disabled={isBasic && target.is_inherited}