Add explicit return values for eslint 5.* compliance

Change-Id: I7594cd238f0b60969b185a9f88895081f5f87df9
This commit is contained in:
Wyatt Allen
2018-07-06 12:01:06 -07:00
parent ebe02f5b29
commit b05716c7b7

View File

@@ -49,12 +49,12 @@
},
get selectedItem() {
if (!this._ironSelector) { return; }
if (!this._ironSelector) { return undefined; }
return this._ironSelector.selectedItem;
},
get selectedValue() {
if (!this._ironSelector) { return; }
if (!this._ironSelector) { return undefined; }
return this._ironSelector.selected;
},