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

minor js lint fixes

parent 4b1500e7
Loading
Loading
Loading
Loading
+15 −15
Original line number Diff line number Diff line
@@ -28,14 +28,14 @@ import { Elevation } from '@rmwc/elevation';

const CorePodsLed = props => {
  /*eslint-disable */
  const greenLed = require("../../img/green-led.png");
  const redLed = require("../../img/red-led.png");
  const greenLed = require('../../img/green-led.png');
  const redLed = require('../../img/red-led.png');
  /* eslint-enable */
  const tooltipType = props.corePodsRunning ? 'success' : 'error';
  const marginLeft = { marginLeft: -35 };
  return (
    <>
      <a data-tip data-for="led">
      <a data-tip data-for='led'>
        <img
          src={props.corePodsRunning ? greenLed : redLed}
          height={30}
@@ -44,10 +44,10 @@ const CorePodsLed = props => {
        />
      </a>
      <ReactTooltip
        id="led"
        aria-haspopup="true"
        role="example"
        place="left"
        id='led'
        aria-haspopup='true'
        role='example'
        place='left'
        type={tooltipType}
      >
        <ul style={{ listStyle: 'none' }}>
@@ -70,8 +70,8 @@ const CorePodsLed = props => {

const MeepTopBar = props => {
  /*eslint-disable */
  const logo = require("../../img/ID-Icon-01-idcc.svg");
  const advantEdge = require("../../img/AdvantEDGE-logo-NoTagline_White_RGB.png");
  const logo = require('../../img/ID-Icon-01-idcc.svg');
  const advantEdge = require('../../img/AdvantEDGE-logo-NoTagline_White_RGB.png');
  /* eslint-enable */
  return (
    <Toolbar>
@@ -79,15 +79,15 @@ const MeepTopBar = props => {
        <ToolbarRow>
          <ToolbarSection alignStart>
            <img
              id="idcc-logo"
              className="idcc-toolbar-menu mdc-top-app-bar__navigation-icon"
              id='idcc-logo'
              className='idcc-toolbar-menu mdc-top-app-bar__navigation-icon'
              src={logo}
              alt=""
              alt=''
              onClick={() => {
                props.toggleMainDrawer();
              }}
            />
            <img id="AdvantEdgeLogo" height={50} src={advantEdge} alt="" />
            <img id='AdvantEdgeLogo' height={50} src={advantEdge} alt='' />
            <ToolbarTitle>
              <span style={titleStyle}>{props.title}</span>
            </ToolbarTitle>
+3 −3
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ module.exports = {
  ],
  output: {
    filename: 'bundle.js',
    path: path.resolve(__dirname, 'dist'),
    path: path.resolve(__dirname, 'dist')
  },
  node: {
    fs: 'empty'
@@ -77,7 +77,7 @@ module.exports = {
              name: '[name].[ext]',
              outputPath: 'img',
              publicPath: 'img'
            },
            }
          }]
      },
      {
@@ -89,7 +89,7 @@ module.exports = {
              name: '[name].[ext]',
              outputPath: 'icons',
              publicPath: 'icons'
            },
            }
          }]
      },
      {
+1 −1

File changed.

Contains only whitespace changes.

+17 −17

File changed.

Contains only whitespace changes.