Fix unusable historical import (#34054)
* Add resolvers to data store * Changelog
This commit is contained in:
parent
166fecc0c1
commit
e41c8b027d
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Fix missing resolver import in data/import
|
|
@ -11,6 +11,7 @@ import { Reducer, AnyAction } from 'redux';
|
|||
import { STORE_NAME } from './constants';
|
||||
import * as selectors from './selectors';
|
||||
import * as actions from './actions';
|
||||
import * as resolvers from './resolvers';
|
||||
import reducer, { State } from './reducer';
|
||||
import { WPDataSelectors } from '../types';
|
||||
export * from './types';
|
||||
|
@ -21,6 +22,7 @@ registerStore< State >( STORE_NAME, {
|
|||
actions,
|
||||
controls,
|
||||
selectors,
|
||||
resolvers,
|
||||
} );
|
||||
|
||||
export const IMPORT_STORE_NAME = STORE_NAME;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Fix historical import data in analytics settings
|
Loading…
Reference in New Issue