diff options
author | Mathieu Suen <mathieu.suen@sonarsource.com> | 2023-02-01 16:37:22 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-02-03 20:02:53 +0000 |
commit | a514d3cd1692c97ff29c5aa48366d957cfdbb9b8 (patch) | |
tree | feb1e717987795f1811a9af68b98260eb414da45 /server/sonar-web/src/main/js/apps/quality-profiles/components | |
parent | 87463757bd09191d2464b2f3778cf98411179fd0 (diff) | |
download | sonarqube-a514d3cd1692c97ff29c5aa48366d957cfdbb9b8.tar.gz sonarqube-a514d3cd1692c97ff29c5aa48366d957cfdbb9b8.zip |
SONAR-18381 Improve landmark and heading level
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/components')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileContainer.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileContainer.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileContainer.tsx index ddc968d65a0..5588a4d15b9 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileContainer.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileContainer.tsx @@ -64,7 +64,9 @@ export default function ProfileContainer() { isComparable={filteredProfiles.length > 1} updateProfiles={context.updateProfiles} /> - <Outlet context={{ profile, ...context }} /> + <main> + <Outlet context={{ profile, ...context }} /> + </main> </div> ); } |