Skip to content

Commit

Permalink
Fix eslint warnings/errors
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcnunes committed Jun 20, 2017
1 parent 5d29a98 commit ffde404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/components/server-modal-form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -314,13 +314,13 @@ export default class ServerModalForm extends Component {
</div>
<div className={`four wide field ${this.highlightError('database')}`}>
<label>Database/Keyspace</label>
<div className={this.state.client === "sqlite" && "ui action input"}>
<div className={this.state.client === 'sqlite' && 'ui action input'}>
<input type="text"
name="database"
placeholder="Database"
value={this.state.database || ''}
onChange={::this.handleChange} />
{ this.state.client === "sqlite" &&
{this.state.client === 'sqlite' &&
<label htmlFor="file.database" className="ui icon button btn-file">
<i className="file outline icon" />
<input
Expand Down

0 comments on commit ffde404

Please sign in to comment.