Fix eslint issues again
parent
cae4b50293
commit
a17944544e
archive/database_manager/components
ui
src/tasks/containers
|
@ -119,7 +119,8 @@ const DatabaseManager = React.createClass({
|
|||
</div>
|
||||
<div className="panel-body continuous-queries">
|
||||
{
|
||||
queries.length ? queries.map((query, i) => <pre key={i}><code>{query}</code></pre>) : (
|
||||
queries.length ? queries.map((query, i) => <pre key={i}><code>{query}</code></pre>) :
|
||||
(
|
||||
<div className="continuous-queries__empty">
|
||||
<img src="/assets/images/continuous-query-empty.svg" />
|
||||
<h4>No queries to display</h4>
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
{
|
||||
"name": "chronograf-ui",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"license": "proprietary",
|
||||
"version": "1.1.0",
|
||||
"private": false,
|
||||
"license": "AGPL",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "github:influxdata/enterprise"
|
||||
"url": "github:influxdata/chronograf"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run clean && env NODE_ENV=production node_modules/webpack/bin/webpack.js -p --config ./webpack/prodConfig.js",
|
||||
"build:dev": "node_modules/webpack/bin/webpack.js --config ./webpack/devConfig.js",
|
||||
"start": "node_modules/webpack/bin/webpack.js -w --config ./webpack/devConfig.js",
|
||||
"lint": "eslint src/",
|
||||
"lint": "node_modules/eslint/bin/eslint.js src/",
|
||||
"test": "karma start",
|
||||
"clean": "rm -rf build"
|
||||
},
|
||||
|
|
|
@ -170,7 +170,8 @@ const Tasks = React.createClass({
|
|||
<span className="icon cubo-node"></span>
|
||||
<h4>No tasks running</h4>
|
||||
</div>
|
||||
</div>}
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue