Skip to content

Commit 0e089c7

Browse files
authored
bug #1559 [make:entity] fix indentation in broadcast_twig_template.tpl.php
1 parent e18bb68 commit 0e089c7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{# Learn how to use Turbo Streams: https://github.com/symfony/ux-turbo#broadcast-doctrine-entities-update #}
22
{% block create %}
3-
<turbo-stream action="append" target="<?= $class_name_plural ?>">
4-
<template>
5-
<div id="{{ '<?= $class_name ?>_' ~ id }}">
6-
#{{ id }} created
7-
</div>
8-
</template>
9-
</turbo-stream>
3+
<turbo-stream action="append" target="<?= $class_name_plural ?>">
4+
<template>
5+
<div id="{{ '<?= $class_name ?>_' ~ id }}">
6+
#{{ id }} created
7+
</div>
8+
</template>
9+
</turbo-stream>
1010
{% endblock %}
1111

1212
{% block update %}
13-
<turbo-stream action="update" target="<?= $class_name ?>_{{ id }}">
14-
<template>
15-
#{{ id }} updated
16-
</template>
17-
</turbo-stream>
13+
<turbo-stream action="update" target="<?= $class_name ?>_{{ id }}">
14+
<template>
15+
#{{ id }} updated
16+
</template>
17+
</turbo-stream>
1818
{% endblock %}
1919

2020
{% block remove %}
21-
<turbo-stream action="remove" target="<?= $class_name ?>_{{ id }}"></turbo-stream>
21+
<turbo-stream action="remove" target="<?= $class_name ?>_{{ id }}"></turbo-stream>
2222
{% endblock %}

0 commit comments

Comments
 (0)