From ba08844ff8bf209b03d7c0c3c11bde020217dd4c Mon Sep 17 00:00:00 2001 From: Ivan <8611739+IRBorisov@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:48:17 +0300 Subject: [PATCH] M: Small UI fix --- rsconcept/frontend/src/components/info/InfoUsers.tsx | 4 +++- .../pages/RSFormPage/EditorRSFormCard/EditorLibraryItem.tsx | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rsconcept/frontend/src/components/info/InfoUsers.tsx b/rsconcept/frontend/src/components/info/InfoUsers.tsx index b0e8f723..b7010fd3 100644 --- a/rsconcept/frontend/src/components/info/InfoUsers.tsx +++ b/rsconcept/frontend/src/components/info/InfoUsers.tsx @@ -8,13 +8,15 @@ import { CProps } from '../props'; interface InfoUsersProps extends CProps.Styling { items: UserID[]; prefix: string; + header?: string; } -function InfoUsers({ items, className, prefix, ...restProps }: InfoUsersProps) { +function InfoUsers({ items, className, prefix, header, ...restProps }: InfoUsersProps) { const { getUserLabel } = useUsers(); return (