Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
6174 committed Mar 28, 2024
1 parent b19453b commit 978a0c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function InputComponent({
if (Input.isList(input)) {
if (name === 'image' || name === 'lora_name') {
const options = getOptions(name, input[0]);
const hasRealValue = options[0].realValue;
const hasRealValue = options[0]?.realValue;
return (
<Labelled name={name} widget={widget}>
<Select
Expand Down

0 comments on commit 978a0c1

Please sign in to comment.