|
|
|
@@ -383,7 +383,7 @@ const QrCodeHandleSearch: React.FC<Props> = ({ users, printerCombo }) => { |
|
|
|
<TableHead> |
|
|
|
<TableRow> |
|
|
|
<TableCell> |
|
|
|
<strong>{t("Username")}</strong> |
|
|
|
<strong>{t("name")}</strong> |
|
|
|
</TableCell> |
|
|
|
<TableCell> |
|
|
|
<strong>{t("staffNo")}</strong> |
|
|
|
@@ -400,7 +400,7 @@ const QrCodeHandleSearch: React.FC<Props> = ({ users, printerCombo }) => { |
|
|
|
) : ( |
|
|
|
selectedUsers.map((user) => ( |
|
|
|
<TableRow key={user.id}> |
|
|
|
<TableCell>{user.username || '-'}</TableCell> |
|
|
|
<TableCell>{user.name || '-'}</TableCell> |
|
|
|
<TableCell>{user.staffNo || '-'}</TableCell> |
|
|
|
</TableRow> |
|
|
|
)) |
|
|
|
|