Skip to content

Commit

Permalink
fix(ui-bc): normalize cluster IDs to lowercase in BC options
Browse files Browse the repository at this point in the history
  • Loading branch information
hdinia committed Jan 24, 2024
1 parent aa83b26 commit 5ec94fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default function OptionsList(props: Props) {
)
.map((elm) => ({
name: elm.name,
id: elm.id,
id: elm.id.toLowerCase(),
}));
return tmp;
}, [constraintsTerm, isLink, options, value1, value2]);
Expand Down Expand Up @@ -144,7 +144,7 @@ export default function OptionsList(props: Props) {
name="value2"
list={options2}
label={t(`study.${name2}`)}
data={value2}
data={value2.toLowerCase()}
handleChange={(key, value) => handleValue2(value as string)}
sx={{
flexGrow: 1,
Expand Down

0 comments on commit 5ec94fd

Please sign in to comment.