Merge pull request #1666 from coralproject/auth

Fixed double encoding
This commit is contained in:
Kim Gardner
2018-05-30 16:45:57 -04:00
committed by GitHub
+1 -1
View File
@@ -4,7 +4,7 @@
{% include "partials/data.njk" %}
</head>
<body>
<script type="application/json" id="auth">{{ encodeJSONForHTML(auth) }}</script>
<script type="application/json" id="auth">{{ encodeJSONForHTML(auth) | safe }}</script>
<script type="text/javascript" src="{{ resolve('coral-auth-callback/bundle.js') }}"></script>
</body>
</html>