Commit 4b1500e7 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

formatted & linted code + updated headers

parent 545c2d81
Loading
Loading
Loading
Loading
+154 −157

File changed.

Preview size limit exceeded, changes collapsed.

+0 −1
Original line number Diff line number Diff line
@@ -38,7 +38,6 @@
    "webpack-serve": "^0.3.1"
  },
  "dependencies": {
    "@elastic/elasticsearch": "^7.1.0",
    "@material-ui/core": "^1.5.1",
    "@material-ui/icons": "^1.1.1",
    "axios": "^0.18.0",
+20 −11
Original line number Diff line number Diff line
@@ -13,18 +13,27 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!doctype html>
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="">
    <meta name="author" content="">
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1, shrink-to-fit=no"
    />
    <meta name="description" content="" />
    <meta name="author" content="" />

    <title>MEEP Controller</title>

    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
    <link
      rel="stylesheet"
      href="https://fonts.googleapis.com/css?family=Roboto+Mono"
    />
    <link
      rel="stylesheet"
      href="https://fonts.googleapis.com/css?family=Roboto:300,400,500"
    />
    <!-- <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> -->
  </head>

+5 −4
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ import IDDialog from './id-dialog';
import { MEEP_DLG_CONFIRM } from '../../meep-constants';

class IDConfirmDialog extends Component {

  constructor(props) {
    super(props);
    this.state = {};
@@ -35,7 +34,9 @@ class IDConfirmDialog extends Component {
        onSubmit={() => this.props.onSubmit()}
        cydata={MEEP_DLG_CONFIRM}
      >
        <span style={styles.text}>{`Are you sure you want to ${this.props.title.toLowerCase()}?`}</span>
        <span
          style={styles.text}
        >{`Are you sure you want to ${this.props.title.toLowerCase()}?`}</span>
      </IDDialog>
    );
  }
+7 −4
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ import IDDialog from './id-dialog';
import { MEEP_DLG_DEL_SCENARIO } from '../../meep-constants';

class IDDeleteScenarioDialog extends Component {

  constructor(props) {
    super(props);
    this.state = {};
@@ -35,7 +34,11 @@ class IDDeleteScenarioDialog extends Component {
        onSubmit={this.props.deleteScenario}
        cydata={MEEP_DLG_DEL_SCENARIO}
      >
        <span style={styles.text}>{'Are you sure you want to delete the current scenario from the MEEP Controller?'}</span>
        <span style={styles.text}>
          {
            'Are you sure you want to delete the current scenario from the MEEP Controller?'
          }
        </span>
      </IDDialog>
    );
  }
Loading