From 1fbdd02464ff5b1c917c7ca4b13f66d4153065c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 6 Feb 2019 09:04:38 +0100 Subject: [PATCH] wip: tests --- public/app/core/redux/index.ts | 2 +- public/app/features/dashboard/containers/DashboardPage.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/app/core/redux/index.ts b/public/app/core/redux/index.ts index bf45d7d22df..1ed23a8d744 100644 --- a/public/app/core/redux/index.ts +++ b/public/app/core/redux/index.ts @@ -1,2 +1,2 @@ -export { actionCreatorFactory, noPayloadActionCreatorFactory, ActionOf } from './actionCreatorFactory'; +export { actionCreatorFactory, noPayloadActionCreatorFactory, ActionOf, ActionCreator } from './actionCreatorFactory'; export { reducerFactory } from './reducerFactory'; diff --git a/public/app/features/dashboard/containers/DashboardPage.tsx b/public/app/features/dashboard/containers/DashboardPage.tsx index 1bd5218fd60..dfc0c1d2758 100644 --- a/public/app/features/dashboard/containers/DashboardPage.tsx +++ b/public/app/features/dashboard/containers/DashboardPage.tsx @@ -25,7 +25,7 @@ import { notifyApp } from 'app/core/actions'; import { StoreState, DashboardLoadingState, DashboardRouteInfo } from 'app/types'; import { DashboardModel, PanelModel } from 'app/features/dashboard/state'; -interface Props { +export interface Props { urlUid?: string; urlSlug?: string; urlType?: string; @@ -46,7 +46,7 @@ interface Props { updateLocation: typeof updateLocation; } -interface State { +export interface State { isSettingsOpening: boolean; isEditing: boolean; isFullscreen: boolean;