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

Commit 4dfb311

Browse files
authored
Merge pull request #2527 from DivanteLtd/bugfix/2496
Bugfix/2496
2 parents 78a5afb + 0d0e147 commit 4dfb311

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [1.8.3] - 2019.02.27
88

9-
10-
# Added
9+
### Added
1110
- New reactive helper to check online state. Usage: `import { onlineHelper } from '@vue-storefront/core/helpers'` and then `onlineHelper.isOnline` - @patzick (#2510)
1211

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

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)