diff --git a/src/components/App/__snapshots__/App.test.js.snap b/src/components/App/__snapshots__/App.test.js.snap
index 00e9ac4..5a5eea9 100644
--- a/src/components/App/__snapshots__/App.test.js.snap
+++ b/src/components/App/__snapshots__/App.test.js.snap
@@ -11276,6 +11276,7 @@ exports[`App Route /vehicle-status authenticated 1`] = `
@@ -11528,54 +11529,63 @@ exports[`App Route /vehicle-status authenticated 1`] = `
{
} = useUserContext();
return (
-
+
Car ECUs
@@ -25,9 +25,9 @@ const MainForm = ({ vin }) => {
);
};
-const CarUpdatesTab = ({vin}) => (
+const CarUpdatesTab = ({ vin }) => (
-
+
);
diff --git a/src/components/Cars/Status/__snapshots__/ECUsTab.test.jsx.snap b/src/components/Cars/Status/__snapshots__/ECUsTab.test.jsx.snap
index 8ec2646..b37ef2e 100644
--- a/src/components/Cars/Status/__snapshots__/ECUsTab.test.jsx.snap
+++ b/src/components/Cars/Status/__snapshots__/ECUsTab.test.jsx.snap
@@ -9,7 +9,7 @@ exports[`ECUsTab Render 1`] = `
data-testid="mocked-userprovider"
>
@@ -418,54 +419,63 @@ exports[`CarStatus Render 1`] = `
{
{tabs.map((item, index) => (
-
-
+
+
))}
diff --git a/src/components/Controls/CarECUsTable/index.jsx b/src/components/Controls/CarECUsTable/index.jsx
index 95d9b29..4c3fae0 100644
--- a/src/components/Controls/CarECUsTable/index.jsx
+++ b/src/components/Controls/CarECUsTable/index.jsx
@@ -2,12 +2,12 @@ import {
Table,
TableBody,
TableCell,
+ TableContainer,
TableFooter,
TablePagination,
TableRow,
Tooltip
} from "@material-ui/core";
-import clsx from "clsx";
import React, { useEffect, useState } from "react";
import { logger } from "../../../services/monitoring";
@@ -122,7 +122,7 @@ const CarECUsTable = ({ vin, token, classes }) => {
};
return (
-
+
);
};
diff --git a/src/components/useStyles.jsx b/src/components/useStyles.jsx
index 9cb706f..40a9bba 100644
--- a/src/components/useStyles.jsx
+++ b/src/components/useStyles.jsx
@@ -267,7 +267,12 @@ const useStyles = makeStyles((theme) => ({
textDecoration: "inherit",
color: "inherit",
},
- tableSize: { height: 700, width: "100%" },
+ tableSize: {
+ width: "100%",
+ },
+ tabContainer: {
+ maxWidth: "100%",
+ },
whiteBackground: { backgroundColor: "White" },
progressIcon: { width: 40, height: 40 },
progressSuccess: { color: "green" },
@@ -288,7 +293,7 @@ const useStyles = makeStyles((theme) => ({
},
tableHeader: {
textDecorationStyle: "solid",
- fontWeight:500,
+ fontWeight: 500,
},
limitWidthTableCell: {
maxWidth: "200px",