CEC-4066-dtc-error-text-fix (#318)

* CEC-4066-dtc-error-text-fix

* CEC-4066-dtc-error-text-fix

* remove error text column check:
This commit is contained in:
das31
2023-04-24 18:08:49 -04:00
committed by GitHub
parent 81af6ed9d1
commit d48edf678a
2 changed files with 5 additions and 1 deletions

View File

@@ -50,7 +50,8 @@ const MainForm = ({ vin }) => {
}, },
{ {
id: "ErrorText", id: "ErrorText",
label: "Error Text" label: "Error Text",
no_sort : true,
}, },
{ {
id: "epoch_usec", id: "epoch_usec",

View File

@@ -35,6 +35,9 @@ const HeaderSortable = (props) => {
value === "desc" ? "sorted descending" : "sorted ascending"; value === "desc" ? "sorted descending" : "sorted ascending";
const ColumnLabel = (column) => { const ColumnLabel = (column) => {
if (column.no_sort) {
return column.label
}
if (column.id) { if (column.id) {
return ( return (
<TableSortLabel <TableSortLabel