diff options
author | 7PH <benjamin.raymond@sonarsource.com> | 2023-10-09 11:34:56 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-10-10 20:02:44 +0000 |
commit | d19f5fc9368f1807c2ad4dccaca138530c9370d1 (patch) | |
tree | 2cdda6102a84cd3d1053f8040a27e68c97a8d098 | |
parent | 4e87d5a2531078c1499e12f7e058160f66c5ee82 (diff) | |
download | sonarqube-d19f5fc9368f1807c2ad4dccaca138530c9370d1.tar.gz sonarqube-d19f5fc9368f1807c2ad4dccaca138530c9370d1.zip |
SONAR-20548 Fix QP changelog update column size
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/changelog/Changelog.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/Changelog.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/Changelog.tsx index 1fb5401ff8b..f8c04f53d6d 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/Changelog.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/Changelog.tsx @@ -98,7 +98,7 @@ export default function Changelog(props: Props) { </div> </CellComponent> - <ContentCell className="sw-align-top sw-max-w-[400px]"> + <ContentCell className="sw-align-top"> {event.params && <ChangesList changes={event.params} />} </ContentCell> </TableRowInteractive> @@ -108,7 +108,7 @@ export default function Changelog(props: Props) { return ( <Table columnCount={5} - columnWidths={['1%', '1%', '1%', 'auto', '1%']} + columnWidths={['1%', '1%', '1%', 'auto', '400px']} header={ <TableRow> <ContentCell>{intl.formatMessage({ id: 'date' })}</ContentCell> |