From 6b9e5bba7d94e664587191e4250c898d2dd20d69 Mon Sep 17 00:00:00 2001 From: proddy Date: Tue, 7 Jul 2020 23:24:22 +0200 Subject: [PATCH] renamed types.ts --- interface/src/project/EMSESPDevicesController.tsx | 2 +- interface/src/project/EMSESPDevicesForm.tsx | 2 +- interface/src/project/EMSESPSettingsController.tsx | 2 +- interface/src/project/EMSESPStatus.ts | 2 +- interface/src/project/EMSESPStatusController.tsx | 2 +- interface/src/project/EMSESPStatusForm.tsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/interface/src/project/EMSESPDevicesController.tsx b/interface/src/project/EMSESPDevicesController.tsx index 4db6bac63..52945963a 100644 --- a/interface/src/project/EMSESPDevicesController.tsx +++ b/interface/src/project/EMSESPDevicesController.tsx @@ -3,7 +3,7 @@ import React, { Component } from 'react'; import { restController, RestControllerProps, RestFormLoader, SectionContent } from '../components'; import { ENDPOINT_ROOT } from '../api'; import EMSESPDevicesForm from './EMSESPDevicesForm'; -import { EMSESPDevices } from './types'; +import { EMSESPDevices } from './EMSESPtypes'; export const EMSESP_DEVICES_ENDPOINT = ENDPOINT_ROOT + "emsespDevices"; diff --git a/interface/src/project/EMSESPDevicesForm.tsx b/interface/src/project/EMSESPDevicesForm.tsx index 5ad32f2c0..650b445bd 100644 --- a/interface/src/project/EMSESPDevicesForm.tsx +++ b/interface/src/project/EMSESPDevicesForm.tsx @@ -23,7 +23,7 @@ import { FormButton, } from "../components"; -import { EMSESPDevices, Device } from "./types"; +import { EMSESPDevices, Device } from "./EMSESPtypes"; import { ENDPOINT_ROOT } from '../api'; export const SCANDEVICES_ENDPOINT = ENDPOINT_ROOT + "scanDevices"; diff --git a/interface/src/project/EMSESPSettingsController.tsx b/interface/src/project/EMSESPSettingsController.tsx index 9a139ec2f..961c4a5f3 100644 --- a/interface/src/project/EMSESPSettingsController.tsx +++ b/interface/src/project/EMSESPSettingsController.tsx @@ -10,7 +10,7 @@ import { restController, RestControllerProps, RestFormLoader, RestFormProps, For import { isIP, isHostname, or } from '../validators'; -import { EMSESPSettings } from './types'; +import { EMSESPSettings } from './EMSESPtypes'; export const EMSESP_SETTINGS_ENDPOINT = ENDPOINT_ROOT + "emsespSettings"; diff --git a/interface/src/project/EMSESPStatus.ts b/interface/src/project/EMSESPStatus.ts index ff48bdca1..7b4059990 100644 --- a/interface/src/project/EMSESPStatus.ts +++ b/interface/src/project/EMSESPStatus.ts @@ -1,5 +1,5 @@ import { Theme } from '@material-ui/core'; -import { EMSESPStatus, busConnectionStatus } from './types'; +import { EMSESPStatus, busConnectionStatus } from './EMSESPtypes'; export const isConnected = ({ status }: EMSESPStatus) => status !== busConnectionStatus.BUS_STATUS_OFFLINE; diff --git a/interface/src/project/EMSESPStatusController.tsx b/interface/src/project/EMSESPStatusController.tsx index ba8dab71c..b7dd8cf32 100644 --- a/interface/src/project/EMSESPStatusController.tsx +++ b/interface/src/project/EMSESPStatusController.tsx @@ -3,7 +3,7 @@ import React, { Component } from 'react'; import { restController, RestControllerProps, RestFormLoader, SectionContent } from '../components'; import { ENDPOINT_ROOT } from '../api'; import EMSESPStatusForm from './EMSESPStatusForm'; -import { EMSESPStatus } from './types'; +import { EMSESPStatus } from './EMSESPtypes'; export const EMSESP_STATUS_ENDPOINT = ENDPOINT_ROOT + "emsespStatus"; diff --git a/interface/src/project/EMSESPStatusForm.tsx b/interface/src/project/EMSESPStatusForm.tsx index 8fba7bcf6..0ed425e12 100644 --- a/interface/src/project/EMSESPStatusForm.tsx +++ b/interface/src/project/EMSESPStatusForm.tsx @@ -35,7 +35,7 @@ import { mqttStatusHighlight, } from "./EMSESPStatus"; -import { EMSESPStatus } from "./types"; +import { EMSESPStatus } from "./EMSESPtypes"; type EMSESPStatusFormProps = RestFormProps & WithTheme;