Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production Release | Dec Week 2 #6849

Merged
merged 10 commits into from
Dec 11, 2023
Prev Previous commit
Next Next commit
seperated bedname and location name (#6794)
  • Loading branch information
kshitijv256 authored Dec 6, 2023
commit 5e139447f924dad9747e29c00732334932ca8c34
2 changes: 1 addition & 1 deletion src/Components/Common/BedSelect.tsx
Original file line number Diff line number Diff line change
@@ -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
);
}}
Loading