Fixed: Misaligned table border in history

This commit is contained in:
Bogdan
2023-06-29 16:08:23 +03:00
parent 6afa1dc8ba
commit 90f2020e59
3 changed files with 15 additions and 18 deletions

View File

@@ -26,9 +26,7 @@
width: 70px;
}
.parameters {
composes: cell from '~Components/Table/Cells/TableRowCell.css';
.parametersContent {
display: flex;
flex-wrap: wrap;
}

View File

@@ -6,7 +6,7 @@ interface CssExports {
'details': string;
'elapsedTime': string;
'indexer': string;
'parameters': string;
'parametersContent': string;
'query': string;
'releaseGroup': string;
'source': string;

View File

@@ -193,10 +193,8 @@ class HistoryRow extends Component {
if (name === 'parameters') {
return (
<TableRowCell
key={name}
className={styles.parameters}
>
<TableRowCell key={name}>
<div className={styles.parametersContent}>
{parameters.map((parameter) => {
return (
<HistoryRowParameter
@@ -207,6 +205,7 @@ class HistoryRow extends Component {
);
}
)}
</div>
</TableRowCell>
);
}