Skip to content

Commit bfb6017

Browse files
🐛 TableCellError should render numeric error (#469)
Signed-off-by: Carlos Feria <2582866+carlosthe19916@users.noreply.github.com>
1 parent f4e5f63 commit bfb6017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/app/components/TableCellError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ interface TableCellErrorProps {
99
}
1010

1111
export const TableCellError: React.FC<TableCellErrorProps> = ({ error }) => {
12-
return <Label color="red">{error.code} Error</Label>;
12+
return <Label color="red">{error.status} Error</Label>;
1313
};

0 commit comments

Comments
 (0)