1
0
Fork 0

removed unused computed property

Dieser Commit ist enthalten in:
Faizaan Gagan 2021-03-25 11:38:53 +05:30
Ursprung 873b30ac65
Commit 9d0a061099

Datei anzeigen

@ -18,9 +18,6 @@ export default WizardFieldValidator.extend({
noSimilarTopics: computed('similarTopics', function() {
return this.similarTopics !== null && this.similarTopics.length == 0;
}),
showDefault: computed('hasNotSearched', 'hasInput', 'typing', function() {
return this.hasInput && (this.hasNotSearched || this.typing);
}),
showSimilarTopics: computed('typing', 'hasSimilarTopics', function() {
return this.hasSimilarTopics && !this.typing;
}),