Fix lint errors

This commit is contained in:
Gregory Schier
2024-10-02 10:00:58 -07:00
parent e401e8f1cf
commit d0fe1beee0
2 changed files with 3 additions and 3 deletions

View File

@@ -218,7 +218,7 @@ function SelectArg({
value={value}
options={[
...arg.options.map((a) => ({
label: a.name + (arg.defaultValue === a.value ? ' (default)' : ''),
label: a.label + (arg.defaultValue === a.value ? ' (default)' : ''),
value: a.value === arg.defaultValue ? NULL_ARG : a.value,
})),
]}