Fix unusable historical import (#34054)

* Add resolvers to data store

* Changelog
This commit is contained in:
Ilyas Foo 2022-07-25 11:20:40 +08:00 committed by GitHub
parent 166fecc0c1
commit e41c8b027d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Fix missing resolver import in data/import

View File

@ -11,6 +11,7 @@ import { Reducer, AnyAction } from 'redux';
import { STORE_NAME } from './constants'; import { STORE_NAME } from './constants';
import * as selectors from './selectors'; import * as selectors from './selectors';
import * as actions from './actions'; import * as actions from './actions';
import * as resolvers from './resolvers';
import reducer, { State } from './reducer'; import reducer, { State } from './reducer';
import { WPDataSelectors } from '../types'; import { WPDataSelectors } from '../types';
export * from './types'; export * from './types';
@ -21,6 +22,7 @@ registerStore< State >( STORE_NAME, {
actions, actions,
controls, controls,
selectors, selectors,
resolvers,
} ); } );
export const IMPORT_STORE_NAME = STORE_NAME; export const IMPORT_STORE_NAME = STORE_NAME;

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Fix historical import data in analytics settings