feature/IO-3225-Notifications-1.5: Finish
This commit is contained in:
@@ -22,11 +22,11 @@ const EmployeeSearchSelect = ({ options, ...props }) => {
|
||||
? options.map((o) => (
|
||||
<Option key={o.id} value={o.id} search={`${o.employee_number} ${o.first_name} ${o.last_name}`}>
|
||||
<Space>
|
||||
{`${o.employee_number} ${o.first_name} ${o.last_name}`}
|
||||
|
||||
{`${o.employee_number ?? ""} ${o.first_name} ${o.last_name}`}
|
||||
<Tag color="green">
|
||||
{o.flat_rate ? t("timetickets.labels.flat_rate") : t("timetickets.labels.straight_time")}
|
||||
</Tag>
|
||||
{o.user_email ? <Tag color="blue">{o.user_email}</Tag> : null}
|
||||
</Space>
|
||||
</Option>
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user