Skip to content

Commit

Permalink
Fix references to templates
Browse files Browse the repository at this point in the history
  • Loading branch information
GSadee committed Feb 15, 2021
1 parent 9e44556 commit 3154dd1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:

-
name: Run Behat
run: vendor/bin/behat --colors --strict -vvv --no-interaction || vendor/bin/behat --colors --strict -vvv --no-interaction --rerun
run: vendor/bin/behat --colors --strict -vvv --no-interaction -f progress || vendor/bin/behat --colors --strict -vvv --no-interaction -f progress --rerun

-
name: Upload Behat logs
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config/admin_routing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sylius_refund_credit_memo:
resource: |
alias: sylius_refund.credit_memo
section: admin
templates: SyliusAdminBundle:Crud
templates: "@SyliusAdmin\\Crud"
only: ['index']
grid: sylius_refund_credit_memo
permission: true
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/views/Grid/Filter/channel.html.twig
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% form_theme form 'SyliusUiBundle:Form:theme.html.twig' %}
{% form_theme form '@SyliusUi/Form/theme.html.twig' %}

{{ form_row(form) }}
2 changes: 1 addition & 1 deletion src/Resources/views/orderRefunds.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'SyliusAdminBundle::layout.html.twig' %}
{% extends '@SyliusAdmin/layout.html.twig' %}

{% block title %}{{ 'sylius.ui.order'|trans ~' #'~ order.number }} {{ 'sylius_refund.ui.refunds'|trans }} {{ parent() }}{% endblock %}

Expand Down

0 comments on commit 3154dd1

Please sign in to comment.