mirror of https://github.com/grafana/grafana
parent
3e0a34ceca
commit
ed99a543a5
@ -1,4 +1,4 @@ |
||||
import { AppNotification } from 'app/types'; |
||||
import { AppNotification } from 'app/types/'; |
||||
|
||||
export enum ActionTypes { |
||||
AddAppNotification = 'ADD_APP_NOTIFICATION', |
||||
@ -1,6 +1,6 @@ |
||||
import { appNotificationsReducer } from './reducers'; |
||||
import { ActionTypes } from './actions'; |
||||
import { AppNotificationSeverity } from 'app/types'; |
||||
import { appNotificationsReducer } from './appNotification'; |
||||
import { ActionTypes } from '../actions/appNotification'; |
||||
import { AppNotificationSeverity } from 'app/types/index'; |
||||
|
||||
describe('clear alert', () => { |
||||
it('should filter alert', () => { |
||||
@ -1,5 +1,5 @@ |
||||
import { AppNotification, AppNotificationsState } from 'app/types'; |
||||
import { Action, ActionTypes } from './actions'; |
||||
import { AppNotification, AppNotificationsState } from 'app/types/index'; |
||||
import { Action, ActionTypes } from '../actions/appNotification'; |
||||
|
||||
export const initialState: AppNotificationsState = { |
||||
appNotifications: [] as AppNotification[], |
||||
Loading…
Reference in new issue