mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-12 00:34:57 -05:00
tweak(ui): enum field selects have size="sm"
This commit is contained in:
@@ -26,7 +26,7 @@ const EnumFieldInputComponent = (props: FieldComponentProps<EnumFieldInputInstan
|
||||
);
|
||||
|
||||
return (
|
||||
<Select className="nowheel nodrag" onChange={handleValueChanged} value={field.value}>
|
||||
<Select className="nowheel nodrag" onChange={handleValueChanged} value={field.value} size="sm">
|
||||
{fieldTemplate.options.map((option) => (
|
||||
<option key={option} value={option}>
|
||||
{fieldTemplate.ui_choice_labels ? fieldTemplate.ui_choice_labels[option] : option}
|
||||
|
||||
Reference in New Issue
Block a user