Skip to content

Commit aba457b

Browse files
committed
Fix wrong brace
1 parent 167c30f commit aba457b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/web/src/services/template.ts.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class {{ service.name | caseUcfirst }} extends Service {
6060
{% for parameter in method.parameters.query %}
6161
if (typeof {% if parameter.isGlobal %}this.{% endif %}{{ parameter.name | caseCamel | escapeKeyword }} !== 'undefined') {
6262
payload['{{ parameter.name }}'] = {% if method.type == 'graphql' %}JSON.stringify({% endif %}{% if parameter.isGlobal %}this.{% endif %}{{ parameter.name | caseCamel | escapeKeyword }}{% if method.type == 'graphql' %}){% endif %};
63-
%}
63+
}
6464

6565
{% endfor %}
6666
{% for parameter in method.parameters.body %}

0 commit comments

Comments
 (0)