fix data table

This commit is contained in:
natib21
2026-06-20 07:37:37 +00:00
parent fa2bfa2ca4
commit d97085009e
2 changed files with 21 additions and 2 deletions

View File

@@ -377,8 +377,18 @@ const FleetResourcePage = () => {
</Box>
{viewMode === "table" ? (
<Box style={{ overflowX: "auto", width: "100%", minWidth: 0, WebkitOverflowScrolling: "touch" }}>
<div style={{ minWidth: "max-content", display: "inline-block", width: "100%" }}>
<Box style={{
overflowX: "auto",
width: "100%",
minWidth: 0,
WebkitOverflowScrolling: "touch",
display: "block"
}}>
<div style={{
minWidth: "100%",
display: "table",
width: "100%"
}}>
<DataTable
columns={columns}
data={pagedRows}