From a7618193f636ac214800e44ac9c038d049e130ff Mon Sep 17 00:00:00 2001
From: Jonas Philbert <6285509+JonasPhilbert@users.noreply.github.com>
Date: Thu, 6 Oct 2022 14:07:43 +0200
Subject: [PATCH] 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.
---
 packages/graphql-playground-html/minimal.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/graphql-playground-html/minimal.html b/packages/graphql-playground-html/minimal.html
index 1420a5564..7b0e02a83 100644
--- a/packages/graphql-playground-html/minimal.html
+++ b/packages/graphql-playground-html/minimal.html
@@ -2,7 +2,7 @@
 <html>
 
 <head>
-  <meta charset=utf-8/>
+  <meta charset="utf-8"/>
   <meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
   <title>GraphQL Playground</title>
   <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/graphql-playground-react/build/static/css/index.css" />
@@ -55,4 +55,4 @@
     })</script>
 </body>
 
-</html>
\ No newline at end of file
+</html>