aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/permission-templates
diff options
context:
space:
mode:
authorMathieu Suen <mathieu.suen@sonarsource.com>2023-02-01 16:37:22 +0100
committersonartech <sonartech@sonarsource.com>2023-02-03 20:02:53 +0000
commita514d3cd1692c97ff29c5aa48366d957cfdbb9b8 (patch)
treefeb1e717987795f1811a9af68b98260eb414da45 /server/sonar-web/src/main/js/apps/permission-templates
parent87463757bd09191d2464b2f3778cf98411179fd0 (diff)
downloadsonarqube-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.tsx4
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>
);
}
}