Browse Source

fix: avoid circular dependency

pull/4749/head
Arman Ozak 6 years ago
parent
commit
3fea7046f2
  1. 2
      npm/ng-packs/packages/core/src/lib/states/replaceable-components.state.ts

2
npm/ng-packs/packages/core/src/lib/states/replaceable-components.state.ts

@ -1,10 +1,10 @@
import { noop } from '@abp/ng.core';
import { Injectable, NgZone } from '@angular/core';
import { Router } from '@angular/router';
import { Action, createSelector, Selector, State, StateContext } from '@ngxs/store';
import snq from 'snq';
import { AddReplaceableComponent } from '../actions/replaceable-components.actions';
import { ReplaceableComponents } from '../models/replaceable-components';
import { noop } from '../utils/common-utils';
@State<ReplaceableComponents.State>({
name: 'ReplaceableComponentsState',

Loading…
Cancel
Save