mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 20:12: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});
|
return Badge.findAll({search: term});
|
||||||
},
|
},
|
||||||
|
|
||||||
collapsedClassName: function() {
|
@computed('isExpanded')
|
||||||
return (this.get('isExpanded')) ? "fa-caret-down" : "fa-caret-right";
|
collapsedClassName(isExpanded) {
|
||||||
}.property('isExpanded'),
|
return isExpanded ? "fa-caret-down" : "fa-caret-right";
|
||||||
|
},
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
expandOptions() {
|
expandOptions() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user