File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
core/modules/catalog-next Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5555- Awaiting addItem action call inside mergeServerItem action (#5165 )
5656- Moved ` phoneNum ` to proper branch - @lukaszjedrasik ([ #5730 ] ( https://github.com/vuestorefront/vue-storefront/issues/5730 ) )
5757- Development hot-reload speed webpack config - ([ #5559 ] ( https://github.com/vuestorefront/vue-storefront/issues/5559 ) )
58+ - Set correct type for ` productPageVisited ` hook - @lukaszjedrasik ([ #5997 ] ( https://github.com/vuestorefront/vue-storefront/issues/5997 ) )
59+
5860## [ 1.12.2] - 2020.07.28
5961
6062### Added
Original file line number Diff line number Diff line change 1- import { createListenerHook , createMutatorHook } from '@vue-storefront/core/lib/hooks'
1+ import { createListenerHook } from '@vue-storefront/core/lib/hooks'
22import { Category } from './types/Category' ;
3+ import Product from 'core/modules/catalog/types/Product' ;
34
45const {
56 hook : categoryPageVisitedHook ,
910const {
1011 hook : productPageVisitedHook ,
1112 executor : productPageVisitedExecutor
12- } = createListenerHook < Category > ( )
13+ } = createListenerHook < Product > ( )
1314
1415/** Only for internal usage */
1516const catalogHooksExecutors = {
You can’t perform that action at this time.
0 commit comments