mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 05:38:12 +00:00
ESLint one-var, no-var rules (#3239)
* fixed issues for eslint one-var and no-var rules Co-authored-by: Joshi <simplyrender@gmail.com> Co-authored-by: Andrew Henry <akhenry@gmail.com>
This commit is contained in:
@ -274,10 +274,10 @@ define([
|
||||
}
|
||||
|
||||
buildOptionsFromConfiguration(telemetryObject) {
|
||||
let keyString = this.openmct.objects.makeKeyString(telemetryObject.identifier),
|
||||
filters = this.domainObject.configuration
|
||||
&& this.domainObject.configuration.filters
|
||||
&& this.domainObject.configuration.filters[keyString];
|
||||
let keyString = this.openmct.objects.makeKeyString(telemetryObject.identifier);
|
||||
let filters = this.domainObject.configuration
|
||||
&& this.domainObject.configuration.filters
|
||||
&& this.domainObject.configuration.filters[keyString];
|
||||
|
||||
return {filters} || {};
|
||||
}
|
||||
|
Reference in New Issue
Block a user