Skip to content

Commit

Permalink
Exibindo ID dos Setores - Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Mar 19, 2023
1 parent b3bd589 commit 3379252
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/pages/Queues/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ const Queues = () => {
<Table size="small">
<TableHead>
<TableRow>
<TableCell align="center">
{i18n.t("queues.table.id")}
</TableCell>
<TableCell align="center">
{i18n.t("queues.table.name")}
</TableCell>
Expand All @@ -219,6 +222,7 @@ const Queues = () => {
<>
{queues.map((queue) => (
<TableRow key={queue.id}>
<TableCell align="center">{queue.id}</TableCell>
<TableCell align="center">{queue.name}</TableCell>
<TableCell align="center">
<div className={classes.customTableCell}>
Expand Down

0 comments on commit 3379252

Please sign in to comment.