Skip to content

Commit

Permalink
remove test data
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchoeler committed Aug 21, 2020
1 parent 07f2e89 commit ebcfbd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/omnichannel/currentChats/CurrentChatsRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function CurrentChatsRoute() {
].filter(Boolean), [sort, onHeaderClick, t]);

const renderRow = useCallback(({ _id, fname, servedBy, ts, lm, department, open }) => <Table.Row key={_id} tabIndex={0} role='link' onClick={() => onRowClick(_id)} action qa-user-id={_id}>
<Table.Cell withTruncatedText>{fname}{_id}</Table.Cell>
<Table.Cell withTruncatedText>{fname}</Table.Cell>
<Table.Cell withTruncatedText>{department ? department.name : ''}</Table.Cell>
<Table.Cell withTruncatedText>{servedBy && servedBy.username}</Table.Cell>
<Table.Cell withTruncatedText>{moment(ts).format('L LTS')}</Table.Cell>
Expand Down

0 comments on commit ebcfbd3

Please sign in to comment.