fix eslint max-line

This commit is contained in:
Mike Greiling 2017-11-06 15:38:45 -06:00
parent cd45895042
commit 5cc3e23542
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@
},
formatMetricUsage(series) {
const value = series.values[this.currentDataIndex] && series.values[this.currentDataIndex].value;
const value = series.values[this.currentDataIndex] &&
series.values[this.currentDataIndex].value;
if (isNaN(value)) {
return '-';
}