Add missing alt, add missing lang property

This commit is contained in:
Tom Moor
2018-06-16 14:00:24 -07:00
parent adc78fd408
commit 87c1d610d1
3 changed files with 52 additions and 58 deletions

View File

@@ -23,7 +23,7 @@ function HeaderBlock({
}: Props) {
return (
<Header justify="flex-start" align="center" {...rest}>
<TeamLogo src={logoUrl} />
<TeamLogo alt={`${teamName} logo`} src={logoUrl} />
<Flex align="flex-start" column>
<TeamName showDisclosure>
{teamName}{' '}

View File

@@ -1,6 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title>Outline</title>
<link href="/static/styles.css" rel="stylesheet">
@@ -24,10 +23,8 @@
}
</style>
</head>
<body>
<div id="root"></div>
<script src="/static/bundle.js"></script>
</body>
</html>

View File

@@ -1,6 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<title>Outline</title>
<meta name="slack-app-id" content="<%= SLACK_APP_ID %>" />
@@ -23,10 +22,8 @@
}
</style>
</head>
<body>
<div id="root"></div>
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-3.min.js" data-apikey="<%= BUGSNAG_KEY %>"></script>
</body>
</html>