Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Commit f206ea1

Browse files
authored
Merge branch 'develop' into feature/#2458-filters-adjustment
2 parents 2600906 + 4dfb311 commit f206ea1

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [1.8.3] - 2019.02.27
8+
89
### Added
910
- New reactive helper to check online state. Usage: `import { onlineHelper } from '@vue-storefront/core/helpers'` and then `onlineHelper.isOnline` - @patzick (#2510)
1011

1112
### Fixed
1213
- Problem with placing second order (unbinding payment methods after first order) - @patzick (#2195, #2503)
1314
- Remaking order on user orders page - @patzick (#2480)
15+
- state.ts not bound in the module-template - @pkarw (#2496)
1416
- Validation in the Myprofile section for postcode field - @pkarw (#1317)
1517
- Non-integer qty of product added to the cart - @pkarw (#2517)
1618

@@ -25,10 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2527
- Added video support in Product Gallery component. - @rain2o (#2433)
2628
- Improved product quantity change component in product and cart - @patzick (#2398, #2437)
2729
- Updated to Vue 2.6.6 - @filrak (#2456)
28-
- Null sidebar menu data on static page fixed - @filrak (#2456)
30+
- Null sidebar menu data on static page fixed - @filrak (#2449, #2441)
2931
- Fix cannot edit previous steps in checkout - @filrak, @patzick (#2438)
3032
- Fixed route guard ssr problem - @vue-kacper (#2364)
31-
- Fix links in footer to static pages bug - @filrak (#2464)
33+
- Fix links in footer to static pages bug - @filrak (#2452)
3234
- Fix links at docs, Basics/Configuration file explained - @daksamit (#2490)
3335
- Improve images loading on category page, corrected alt view and blinking problem - @patzick (#2465)
3436
- Improve tsconfig for better IDE paths support - @patzick, @filrak (#2474)

src/modules/module-template/store/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ import { ExampleState } from '../types/ExampleState'
33
import { mutations } from './mutations'
44
import { getters } from './getters'
55
import { actions } from './actions'
6+
import { state } from './state'
67

78
export const module: Module<ExampleState, any> = {
89
namespaced: true,
910
mutations,
1011
actions,
11-
getters
12+
getters,
13+
state
1214
}

0 commit comments

Comments
 (0)