UI: Adjustment to overflowing mdm columns fixes (#11009)

This commit is contained in:
Jacob Shandling
2023-04-05 13:19:32 -07:00
committed by GitHub
parent 39918f1d66
commit 422c44e17a
3 changed files with 8 additions and 1 deletions
@@ -240,6 +240,7 @@ const allHostTableHeaders: IDataColumn[] = [
hosts wont respond to a live query because<br/>
they may be shut down, asleep, or not<br/>
connected to the internet.`}
className="last-col-header-with-tip"
>
Status
</TooltipWrapper>
@@ -1349,6 +1349,12 @@ const ManageHostsPage = ({
});
tableColumns[tableColumns.length - 1].isLastColumn = true;
// Update last column
tableColumns.forEach((dataColumn) => {
dataColumn.isLastColumn = false;
});
tableColumns[tableColumns.length - 1].isLastColumn = true;
const emptyState = () => {
const emptyHosts: IEmptyTableProps = {
header: "No hosts match the current criteria",
@@ -178,7 +178,7 @@
.last-col-header-with-tip {
min-width: 90px;
.component__tooltip-wrapper__tip-text {
left: -96px;
left: -126px;
}
}
}