mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 16:52:45 +08:00
Make eslint happy.
This commit is contained in:
parent
91a296839f
commit
4f87f1886b
|
@ -384,9 +384,10 @@ export default Em.Component.extend({
|
|||
return Badge.findAll({search: term});
|
||||
},
|
||||
|
||||
collapsedClassName: function() {
|
||||
return (this.get('isExpanded')) ? "fa-caret-down" : "fa-caret-right";
|
||||
}.property('isExpanded'),
|
||||
@computed('isExpanded')
|
||||
collapsedClassName(isExpanded) {
|
||||
return isExpanded ? "fa-caret-down" : "fa-caret-right";
|
||||
},
|
||||
|
||||
actions: {
|
||||
expandOptions() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user