diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/changelog/Changelog.tsx')
-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> |