Add explicit return values for eslint 5.* compliance
Change-Id: I7594cd238f0b60969b185a9f88895081f5f87df9
This commit is contained in:
@@ -49,12 +49,12 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
get selectedItem() {
|
get selectedItem() {
|
||||||
if (!this._ironSelector) { return; }
|
if (!this._ironSelector) { return undefined; }
|
||||||
return this._ironSelector.selectedItem;
|
return this._ironSelector.selectedItem;
|
||||||
},
|
},
|
||||||
|
|
||||||
get selectedValue() {
|
get selectedValue() {
|
||||||
if (!this._ironSelector) { return; }
|
if (!this._ironSelector) { return undefined; }
|
||||||
return this._ironSelector.selected;
|
return this._ironSelector.selected;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user