diff --git a/modules/currency_denominations/commerce_pos_currency_denominations.links.action.yml b/modules/currency_denominations/commerce_pos_currency_denominations.links.action.yml index 43fac4a..c8cfbb5 100644 --- a/modules/currency_denominations/commerce_pos_currency_denominations.links.action.yml +++ b/modules/currency_denominations/commerce_pos_currency_denominations.links.action.yml @@ -2,4 +2,4 @@ entity.commerce_pos_currency_denominations.add_form: route_name: entity.commerce_pos_currency_denominations.add_form title: 'Add currency denominations' appears_on: - - entity.commerce_pos_currency_denominations.collection + - entity.commerce_pos_currency_denoms.collection diff --git a/modules/currency_denominations/commerce_pos_currency_denominations.links.menu.yml b/modules/currency_denominations/commerce_pos_currency_denominations.links.menu.yml index 4f2832e..58df228 100644 --- a/modules/currency_denominations/commerce_pos_currency_denominations.links.menu.yml +++ b/modules/currency_denominations/commerce_pos_currency_denominations.links.menu.yml @@ -1,5 +1,5 @@ -entity.commerce_pos_currency_denominations.collection: +entity.commerce_pos_currency_denoms.collection: title: Currency denominations - route_name: entity.commerce_pos_currency_denominations.collection + route_name: entity.commerce_pos_currency_denoms.collection parent: commerce.configuration description: 'Manage your currency denominations.' diff --git a/modules/currency_denominations/commerce_pos_currency_denominations.links.task.yml b/modules/currency_denominations/commerce_pos_currency_denominations.links.task.yml index 34a48fc..3d452a7 100644 --- a/modules/currency_denominations/commerce_pos_currency_denominations.links.task.yml +++ b/modules/currency_denominations/commerce_pos_currency_denominations.links.task.yml @@ -1,9 +1,9 @@ -entity.commerce_pos_currency_denominations.edit_form: - route_name: 'entity.commerce_pos_currency_denominations.edit_form' - base_route: 'entity.commerce_pos_currency_denominations.edit_form' +entity.commerce_pos_currency_denoms.edit_form: + route_name: 'entity.commerce_pos_currency_denoms.edit_form' + base_route: 'entity.commerce_pos_currency_denoms.edit_form' title: 'Edit' -entity.commerce_pos_currency_denominations.collection: - route_name: 'entity.commerce_pos_currency_denominations.collection' - base_route: 'entity.commerce_pos_currency_denominations.collection' +entity.commerce_pos_currency_denoms.collection: + route_name: 'entity.commerce_pos_currency_denoms.collection' + base_route: 'entity.commerce_pos_currency_denoms.collection' title: 'List' diff --git a/modules/currency_denominations/src/Form/CurrencyDenominationsForm.php b/modules/currency_denominations/src/Form/CurrencyDenominationsForm.php index 3cde661..308071f 100644 --- a/modules/currency_denominations/src/Form/CurrencyDenominationsForm.php +++ b/modules/currency_denominations/src/Form/CurrencyDenominationsForm.php @@ -67,7 +67,7 @@ class CurrencyDenominationsForm extends EntityForm { drupal_set_message($this->t('Saved the %label currency denominations.', [ '%label' => $currency_denominations->label(), ])); - $form_state->setRedirect('entity.commerce_pos_currency_denominations.collection'); + $form_state->setRedirect('entity.commerce_pos_currency_denoms.collection'); } }