Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added validation message for city field on checkout page - @dz3n (#3723)
- Make price calculation based on saved original prices - @gibkigonzo (#3740)
- Improving is_comparable to work with booleans and digits - @dz3n (#3697)
- Fixed broken link for store locator - @andrzejewsky (#3754)
- Fixed instant checkout functionality - @andrzejewsky (#3765)
- Fixed links to the promoted banners - @andrzejewsky (#3753)
- Fixed missing parameter in the compare list - @andrzejewsky (#3757)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</router-link>
</div>
<div class="mt15">
<router-link class="cl-secondary" :to="getLinkFor('/store-locator')" exact>
<router-link class="cl-secondary" :to="localizedRoute('/store-locator')" exact>
{{ $t('Store locator') }}
</router-link>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/themes/default/pages/Static.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import Breadcrumbs from 'theme/components/core/Breadcrumbs'
import StaticExample from 'theme/components/theme/blocks/Static/Example'
import StaticShortExample from 'theme/components/theme/blocks/Static/Short'
import { getPathForStaticPage } from 'theme/helpers'
import { localizedRoute } from '@vue-storefront/core/lib/multistore'

export default {
components: {
Expand Down Expand Up @@ -68,7 +69,7 @@ export default {
navigation: [
{ title: i18n.t('About us'), link: getPathForStaticPage('/about-us'), component: StaticExample },
{ title: i18n.t('Customer service'), link: getPathForStaticPage('/customer-service'), component: StaticShortExample },
{ title: i18n.t('Store locator'), link: getPathForStaticPage('/store-locator'), component: StaticExample },
{ title: i18n.t('Store locator'), link: localizedRoute('/store-locator'), component: StaticExample },
{ title: i18n.t('Delivery'), link: '/delivery', component: StaticShortExample },
{ title: i18n.t('Return policy'), link: '/returns', component: StaticExample },
{ title: i18n.t('Privacy policy'), link: '/privacy', component: StaticShortExample },
Expand Down