Skip to content

Commit

Permalink
EPMRPP-96647 || "All Unique Errors" dropdown changes its place
Browse files Browse the repository at this point in the history
  • Loading branch information
maria-hambardzumian committed Nov 20, 2024
1 parent 2e5a087 commit 3dbff0a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ export const HeaderCell = track()(
className={cx('header-cell', computedClassName)}
style={customProps.rawHeaderCellStylesConfig}
>
<div className={cx('title-container')} onClick={sortable ? sortingClickHandler : null}>
<div
className={cx('title-container', customProps.titleClassName)}
onClick={sortable ? sortingClickHandler : null}
>
<div className={cx('filter')} onClick={filterClickHandler}>
{Parser(FilterIcon)}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const UniqueErrorsGridWrapped = ({ parentLaunch, data, loading, ...rest }
activeSorting: true,
sortable: true,
customProps: {
gridHeaderCellStyles: cx('matched-header'),
titleClassName: cx('matched-header'),
},
sortingEventInfo: UNIQUE_ERRORS_PAGE_EVENTS.CLICK_MATCHED_TESTS_HEADER_CELL,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

.cluster-header {
padding-left: 37px;
width: 100%;
}

.matched-header{
Expand Down

0 comments on commit 3dbff0a

Please sign in to comment.