FIX: Correct Speedy entry in Posted before/after and Minimum Post Count
This commit is contained in:
parent
3bb4e22692
commit
dbe9391036
|
@ -88,7 +88,6 @@ export default Em.Component.extend({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.findSearchTerms();
|
|
||||||
this.setSearchedTermValue('searchedTerms.username', REGEXP_USERNAME_PREFIX);
|
this.setSearchedTermValue('searchedTerms.username', REGEXP_USERNAME_PREFIX);
|
||||||
this.setSearchedTermValueForCategory();
|
this.setSearchedTermValueForCategory();
|
||||||
this.setSearchedTermValueForGroup();
|
this.setSearchedTermValueForGroup();
|
||||||
|
@ -117,11 +116,11 @@ export default Em.Component.extend({
|
||||||
result.push(block);
|
result.push(block);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.set('searchTermBlocks', result);
|
return result;
|
||||||
},
|
},
|
||||||
|
|
||||||
filterBlocks(regexPrefix) {
|
filterBlocks(regexPrefix) {
|
||||||
const blocks = this.get('searchTermBlocks');
|
const blocks = this.findSearchTerms();
|
||||||
if (!blocks) return [];
|
if (!blocks) return [];
|
||||||
|
|
||||||
let result = [];
|
let result = [];
|
||||||
|
|
Loading…
Reference in New Issue