Skip to content

Commit 324adb2

Browse files
committed
Fix code style
1 parent 2ad7000 commit 324adb2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Resources/views/GraphiQL/index.html.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@
3434
{% block body_loading %}Loading...{% endblock body_loading %}
3535
{% block body_script %}
3636
<script>
37-
var endpoint = {{ endpoint | json_encode | raw }}
37+
var endpoint = {{ endpoint | json_encode | raw }};
3838
3939
function graphQLFetcher(params) {
4040
{% block fetcher_function_body %}
4141
var headers
4242
4343
{% block graphql_fetcher_headers %}
4444
headers = {
45-
"Accept": "application/json",
46-
"Content-Type": "application/json",
45+
'Accept': 'application/json',
46+
'Content-Type': 'application/json',
4747
}
4848
{% endblock graphql_fetcher_headers %}
4949
5050
return fetch(endpoint, {
51-
method: "post",
51+
method: 'post',
5252
headers: headers,
5353
body: JSON.stringify(params),
5454
credentials: 'include',

0 commit comments

Comments
 (0)