From 16f82987fd8d8b2bb96fe2be29b1d770aabebaa6 Mon Sep 17 00:00:00 2001 From: jero Date: Sun, 2 Feb 2020 20:55:41 +0300 Subject: [PATCH] fix(products.module): add mising id --- src/app/store/modules/products/products.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/store/modules/products/products.module.ts b/src/app/store/modules/products/products.module.ts index befc1d1e..06bda2c7 100644 --- a/src/app/store/modules/products/products.module.ts +++ b/src/app/store/modules/products/products.module.ts @@ -2,4 +2,5 @@ import * as actions from './actions'; import * as reducers from './reducers'; import * as selectors from './selectors'; -export { reducers, actions, selectors }; +const id = 'products'; +export { id, reducers, actions, selectors };