Skip to content

Commit 441aca5

Browse files
committed
services/search: Simplify inputValue property
There does not seem to be a need for this to be a computed property
1 parent a15769f commit 441aca5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/services/search.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import { oneWay } from '@ember/object/computed';
21
import Service from '@ember/service';
32

43
export default class SearchService extends Service {
54
q = null;
6-
7-
@oneWay('q') inputValue;
5+
inputValue = null;
86
}

0 commit comments

Comments
 (0)