FIX: Replace this.get("foo") with this.foo to fix linting checks

This commit is contained in:
Daniel Waterworth
2019-11-21 11:29:50 +00:00
parent 5762498391
commit 3344312fb5

View File

@ -9,15 +9,15 @@ export default Mixin.create({
"category", "category",
"noSubcategories", "noSubcategories",
function() { function() {
const rawFilterMode = this.get("rawFilterMode"); const rawFilterMode = this.rawFilterMode;
if (rawFilterMode) { if (rawFilterMode) {
return rawFilterMode; return rawFilterMode;
} else { } else {
const category = this.get("category"); const category = this.category;
const filterType = this.get("filterType"); const filterType = this.filterType;
if (category) { if (category) {
const noSubcategories = this.get("noSubcategories"); const noSubcategories = this.noSubcategories;
return `c/${Category.slugFor(category)}${ return `c/${Category.slugFor(category)}${
noSubcategories ? "/none" : "" noSubcategories ? "/none" : ""
@ -31,7 +31,7 @@ export default Mixin.create({
filterMode: computed("filterModeInternal", { filterMode: computed("filterModeInternal", {
get() { get() {
return this.get("filterModeInternal"); return this.filterModeInternal;
}, },
set(key, value) { set(key, value) {