Skip to content

Commit

Permalink
fix(pci-object-storage): rebase
Browse files Browse the repository at this point in the history
ref: DTCORE-2868
Signed-off-by: Florian Renaut <[email protected]>
  • Loading branch information
frenautvh committed Jan 10, 2025
1 parent d955cc8 commit 859a790
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export default function StepOneComponent({
)}
/>
<OdsSelect
value={selectedUser?.id}
value={`${selectedUser?.id}`}
onOdsChange={(event) => {
const user = users.find((u) => u.id == event.detail.value);
const user = users.find((u) => `${u.id}` === event.detail.value);
onSelectUser(user);
}}
name="userSelect"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function StepOneComponent({
<OdsSelect
value={`${selectedUser?.id}`}
onOdsChange={(event) => {
const user = users.find((u) => u.id == event.detail.value);
const user = users.find((u) => `${u.id}` === event.detail.value);
onSelectUser(user);
}}
name="userSelect"
Expand Down

0 comments on commit 859a790

Please sign in to comment.