Commit e2c65eff authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

fixed lint issues

parent 17d900a4
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -73,7 +73,8 @@ function colorArray(dataLength) {
  return colorArray;
}

const metricsBasePath = 'http://10.3.16.73:30008/v1';
const metricsBasePath = 'http://' + location.hostname + ':30008/v1';
// const metricsBasePath = 'http://10.3.16.73:30008/v1';

const buildSeriesFromEpoch = (series, epoch) => {
  epoch.data.forEach(p => {
@@ -517,7 +518,7 @@ class DashboardContainer extends Component {
  render() {

    if (EXEC_STATE_IDLE === this.props.scenarioState) {
      console.log('Scenario is idle');
      idlog('Scenario is idle')('');
    }

    let epochs = null;
+0 −1
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ import { connect } from 'react-redux';
import React, { Component }  from 'react';
import { Grid, GridCell, GridInner } from '@rmwc/grid';
import { Elevation } from '@rmwc/elevation';
import IDCVis from '../idc-vis';
import DashboardContainer from '../dashboard-container';
import ExecPageScenarioButtons from './exec-page-scenario-buttons';

+0 −1
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@ import { PAGE_CONFIGURE, PAGE_EXECUTE, PAGE_MONITOR, PAGE_SETTINGS } from '../st
import {
  MEEP_TAB_CFG,
  MEEP_TAB_EXEC,
  MEEP_TAB_EXP_EXEC,
  MEEP_TAB_MON,
  MEEP_TAB_SET
} from '../meep-constants';
+0 −1
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@ export const TYPE_EXEC = 'EXEC';
// MEEP IDs
export const MEEP_TAB_CFG = 'meep-tab-cfg';
export const MEEP_TAB_EXEC = 'meep-tab-exec';
export const MEEP_TAB_EXP_EXEC = 'meep-tab-exp-exec';
export const MEEP_TAB_MON = 'meep-tab-mon';
export const MEEP_TAB_SET = 'meep-tab-set';
export const MEEP_LBL_SCENARIO_NAME = 'meep-lbl-scenario-name';