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/permission-templates | |
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/permission-templates')
-rw-r--r-- | server/sonar-web/src/main/js/apps/permission-templates/components/PermissionTemplatesApp.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionTemplatesApp.tsx b/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionTemplatesApp.tsx index a6691e30792..0a613050b6f 100644 --- a/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionTemplatesApp.tsx +++ b/server/sonar-web/src/main/js/apps/permission-templates/components/PermissionTemplatesApp.tsx @@ -110,13 +110,13 @@ export class PermissionTemplatesApp extends React.PureComponent<Props, State> { render() { const { id } = this.props.location.query; return ( - <div> + <main> <Suggestions suggestions="permission_templates" /> <Helmet defer={false} title={translate('permission_templates.page')} /> {id && this.renderTemplate(id)} {!id && this.renderHome()} - </div> + </main> ); } } |