From 967bc8173a61ae83d1d6649925ca4737ebdf573d Mon Sep 17 00:00:00 2001 From: Jared Scheib Date: Fri, 22 Jun 2018 18:06:26 -0700 Subject: [PATCH] Rename types/reducers/dashboard.ts to plural for consistency --- ui/src/dashboards/actions/index.ts | 2 +- ui/src/types/actions/dashboards.ts | 2 +- ui/src/types/reducers/{dashboard.ts => dashboards.ts} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename ui/src/types/reducers/{dashboard.ts => dashboards.ts} (100%) diff --git a/ui/src/dashboards/actions/index.ts b/ui/src/dashboards/actions/index.ts index 8b2b867f6f..97fee41a63 100644 --- a/ui/src/dashboards/actions/index.ts +++ b/ui/src/dashboards/actions/index.ts @@ -70,7 +70,7 @@ import { import * as DashboardData from 'src/types/dashboard' import * as DashboardActions from 'src/types/actions/dashboards' import * as DashboardAPIs from 'src/types/apis/dashboard' -import * as DashboardReducers from 'src/types/reducers/dashboard' +import * as DashboardReducers from 'src/types/reducers/dashboards' import * as AuthReducers from 'src/types/reducers/auth' import * as NotificationActions from 'src/shared/actions/notifications' import * as ErrorActions from 'src/types/actions/error' diff --git a/ui/src/types/actions/dashboards.ts b/ui/src/types/actions/dashboards.ts index c28c320390..51729344c8 100644 --- a/ui/src/types/actions/dashboards.ts +++ b/ui/src/types/actions/dashboards.ts @@ -7,7 +7,7 @@ import * as QueryData from 'src/types/query' import * as TempVarData from 'src/types/tempVars' import * as ErrorActions from 'src/types/actions/error' import * as NotificationActions from 'src/shared/actions/notifications' -import * as DashboardReducers from 'src/types/reducers/dashboard' +import * as DashboardReducers from 'src/types/reducers/dashboards' import {Location} from 'history' export type LoadDashboardsActionCreator = ( diff --git a/ui/src/types/reducers/dashboard.ts b/ui/src/types/reducers/dashboards.ts similarity index 100% rename from ui/src/types/reducers/dashboard.ts rename to ui/src/types/reducers/dashboards.ts