Skip to content

Commit d06d414

Browse files
committed
4565: Applied coding standards to twig files
1 parent 7af9f7a commit d06d414

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

templates/admin/admin.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
{% endblock %}
1010

1111
{% block javascripts %}
12-
{{ vite_entry_script_tags('admin', { dependency: 'react' }) }}
12+
{{ vite_entry_script_tags('admin', {dependency: 'react'}) }}
1313
{% endblock %}
1414

1515
<script>
16-
const DISPLAY_CONFIG = {{ config | raw }};
16+
const DISPLAY_CONFIG = {{ config|raw }};
1717
</script>
1818
</head>
1919
<body>

templates/client/client.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
{% endblock %}
1010

1111
{% block javascripts %}
12-
{{ vite_entry_script_tags('client', { dependency: 'react' }) }}
12+
{{ vite_entry_script_tags('client', {dependency: 'react'}) }}
1313
{% endblock %}
1414

1515
<script>
16-
const DISPLAY_CONFIG = {{ config | raw }};
16+
const DISPLAY_CONFIG = {{ config|raw }};
1717
</script>
1818
</head>
1919
<body>

templates/template/template.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{% endblock %}
1010

1111
{% block javascripts %}
12-
{{ vite_entry_script_tags('template', { dependency: 'react' }) }}
12+
{{ vite_entry_script_tags('template', {dependency: 'react'}) }}
1313
{% endblock %}
1414
</head>
1515
<body>

0 commit comments

Comments
 (0)