diff --git a/frontend/src/History/HistoryRow.css b/frontend/src/History/HistoryRow.css index a1d156d6b..735cb323a 100644 --- a/frontend/src/History/HistoryRow.css +++ b/frontend/src/History/HistoryRow.css @@ -26,9 +26,7 @@ width: 70px; } -.parameters { - composes: cell from '~Components/Table/Cells/TableRowCell.css'; - +.parametersContent { display: flex; flex-wrap: wrap; } diff --git a/frontend/src/History/HistoryRow.css.d.ts b/frontend/src/History/HistoryRow.css.d.ts index e7ab9107b..2676e0a43 100644 --- a/frontend/src/History/HistoryRow.css.d.ts +++ b/frontend/src/History/HistoryRow.css.d.ts @@ -6,7 +6,7 @@ interface CssExports { 'details': string; 'elapsedTime': string; 'indexer': string; - 'parameters': string; + 'parametersContent': string; 'query': string; 'releaseGroup': string; 'source': string; diff --git a/frontend/src/History/HistoryRow.js b/frontend/src/History/HistoryRow.js index 1a7dec144..ea9023ef6 100644 --- a/frontend/src/History/HistoryRow.js +++ b/frontend/src/History/HistoryRow.js @@ -193,20 +193,19 @@ class HistoryRow extends Component { if (name === 'parameters') { return ( - - {parameters.map((parameter) => { - return ( - - ); - } - )} + +
+ {parameters.map((parameter) => { + return ( + + ); + } + )} +
); }