Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chgibb committed Oct 3, 2019
1 parent f7861eb commit eb3ca2e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
Expand Up @@ -6,7 +6,7 @@ import {Form, FullWidthStepperForm} from "../../fullWidthStepperForm";

import {step1} from "./step1";
import {step2} from "./step2";
import { step3 } from './step3';
import {step3} from "./step3";

export interface NewCoverageTrackFormProps
{
Expand Down
28 changes: 15 additions & 13 deletions src/req/renderer/containers/forms/newCoverageTrackForm/step3.tsx
@@ -1,12 +1,14 @@
import * as React from "react";
import {style} from "typestyle";

import {FullWidthFormStep} from "../../fullWidthStepperForm";
import {GridWrapper} from "../../gridWrapper";
import {Grid} from "../../../components/grid";
import {Typography} from "../../../components/typography";
import {ColorLensRounded} from "../../../components/icons/colorLensRounded";

import {NewCoverageTrackForm} from "./newCoverageTrackForm";

import { NewCoverageTrackForm } from './newCoverageTrackForm';
import { FullWidthFormStep } from '../../fullWidthStepperForm';
import { GridWrapper } from '../../gridWrapper';
import { Grid } from '../../../components/grid';
import { Typography } from '../../../components/typography';
import { ColorLensRounded } from '../../../components/icons/colorLensRounded';
import { style } from 'typestyle';

export function step3(this : NewCoverageTrackForm) : FullWidthFormStep
{
Expand All @@ -18,15 +20,15 @@ export function step3(this : NewCoverageTrackForm) : FullWidthFormStep
<Grid container spacing={4} justify="center">
<Grid item>

<Typography>{this.state.log10Scale ? "Log10 Scale, " : ""}scale by {this.state.scaleFactor}</Typography>
</Grid>
<Grid item>
<ColorLensRounded
<Typography>{this.state.log10Scale ? "Log10 Scale, " : ""}scale by {this.state.scaleFactor}</Typography>
</Grid>
<Grid item>
<ColorLensRounded
color="primary"
classes={{colorPrimary: style({color: this.state.color})}}
/></Grid>
/></Grid>

</Grid>
</Grid>

</GridWrapper>
</div>
Expand Down

0 comments on commit eb3ca2e

Please sign in to comment.