Skip to content

Commit a761819

Browse files
Wrap charset in quotes.
Encoding meta definitions should be wrapped in quotes, like other HTML attributes. See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#examples Was found because it caused an error in the characters used for code folding.
1 parent 91ed7d8 commit a761819

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/graphql-playground-html/minimal.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33

44
<head>
5-
<meta charset=utf-8/>
5+
<meta charset="utf-8"/>
66
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
77
<title>GraphQL Playground</title>
88
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/graphql-playground-react/build/static/css/index.css" />
@@ -55,4 +55,4 @@
5555
})</script>
5656
</body>
5757

58-
</html>
58+
</html>

0 commit comments

Comments
 (0)