Merge pull request #6245 from mabashian/4070-access-3

Adds lang attr to html tag to specify default language for the application

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-03-13 22:36:26 +00:00 committed by GitHub
commit 9ecd6ad0fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html ng-csp="no-unsafe-eval">
<html lang="en-US" ng-csp="no-unsafe-eval">
<head>
<meta charset="utf-8">

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en-US">
<head>
{% load staticfiles %}
<meta charset="utf-8">

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en-US">
<body>
<div id="app" style="height: 100%"></div>
<script src="/bundle.js"></script>