route bugfix, localization

This commit is contained in:
2023-01-25 14:15:34 +01:00
parent e4e2511d1c
commit 8a09fc1f2d
18 changed files with 129 additions and 35 deletions

View File

@@ -9,6 +9,7 @@
.data-table th {
background-color: #bbb;
white-space: nowrap;
}
.data-table th > svg {
@@ -33,4 +34,14 @@
.pagination-page-size > div {
padding-top: 5px;
padding-bottom: 5px;
}
.data-table-buttons {
white-space: nowrap;
}
.data-table-buttons > svg {
margin-left: 4px;
margin-right: 4px;
cursor: pointer;
}

View File

@@ -293,7 +293,6 @@ export class ControlsColumn extends DataColumn {
...buttonProps,
key: "button-" + index,
onClick: (e) => { e.stopPropagation(); button.onClick(entry, index); },
className: "data-table-clickable",
}
if (button.hasOwnProperty("disabled")) {
@@ -309,8 +308,8 @@ export class ControlsColumn extends DataColumn {
}
}
return <>
return <Box className={"data-table-buttons"}>
{buttonElements}
</>
</Box>
}
}