Skip to content

Commit

Permalink
seperated bedname and location name
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijv256 committed Dec 4, 2023
1 parent 9b05821 commit 1f6023f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Common/BedSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const BedSelect = (props: BedSelectProps) => {
optionLabel={(option: any) => {
if (Object.keys(option).length === 0) return "";
return (
`${option.name} ${option?.location_object?.name || t("unknown")}` ||
`${option.name}, ${option?.location_object?.name || t("unknown")}` ||
option?.location_object?.name
);
}}
Expand Down

0 comments on commit 1f6023f

Please sign in to comment.