Skip to content

Commit

Permalink
Fix Referral point (#3)
Browse files Browse the repository at this point in the history
Fix Referral point (#3)
  • Loading branch information
jabahum authored Apr 16, 2024
1 parent 1b9131d commit 4da050b
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,15 @@ const AddToWorklistDialog: React.FC<AddToWorklistDialogProps> = ({
setSelectedReferral(event.target.value)
}
>
{!selectedReferral ? (
<SelectItem
text={t(
"selectAreferelPoint",
"Select a referal point"
)}
value=""
/>
) : null}
{referrals.map((referral) => (
<SelectItem
key={referral.uuid}
Expand Down

0 comments on commit 4da050b

Please sign in to comment.