From 5b047baeb0ada35c9212d32a6de161e3785da059 Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Sun, 16 Jul 2023 15:29:01 +1200 Subject: [PATCH] fix: Mantine Required icon being on new line --- .../frontend/web/src/common/components/IAIMantineSelect.tsx | 4 ++-- .../subpanels/AddModelsPanel/ManualAddCheckpoint.tsx | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx b/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx index 537ccf86be..46b5fc95f6 100644 --- a/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx +++ b/invokeai/frontend/web/src/common/components/IAIMantineSelect.tsx @@ -16,7 +16,7 @@ export type IAISelectProps = Omit & { }; const IAIMantineSelect = (props: IAISelectProps) => { - const { tooltip, inputRef, label, disabled, ...rest } = props; + const { tooltip, inputRef, label, disabled, required, ...rest } = props; const styles = useMantineSelectStyles(); @@ -25,7 +25,7 @@ const IAIMantineSelect = (props: IAISelectProps) => {