eslint fixes

pull/88/head
Vasek Mlejnsky 6 years ago
parent fabd569bed
commit 1aed318741

@ -63,12 +63,6 @@ const ErrorMessage = styled.div`
`;
export default class DuplicateDevice extends Component<Props, State> {
state: State;
input: ?HTMLInputElement;
keyboardHandler: (event: KeyboardEvent) => void;
constructor(props: Props) {
super(props);
@ -85,6 +79,12 @@ export default class DuplicateDevice extends Component<Props, State> {
};
}
state: State;
input: ?HTMLInputElement;
keyboardHandler: (event: KeyboardEvent) => void;
componentDidMount(): void {
// one time autofocus
if (this.input) this.input.focus();

@ -65,7 +65,7 @@ module.exports = {
plugins: [
new webpack.DefinePlugin({
'process.env.BUILD': JSON.stringify(process.env.BUILD),
COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()
COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()),
}),
new HtmlWebpackPlugin({
chunks: ['index'],

Loading…
Cancel
Save