mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 07:11:34 +08:00
DEV: global s/this.get\("(\w+)"\)/this.$1 (#7592)
This commit is contained in:
@ -15,13 +15,13 @@ export default SingleSelectComponent.extend({
|
||||
|
||||
@on("didUpdateAttrs", "init")
|
||||
_setDropdownSelectBoxComponentOptions() {
|
||||
this.get("headerComponentOptions").setProperties({
|
||||
showFullTitle: this.get("showFullTitle")
|
||||
this.headerComponentOptions.setProperties({
|
||||
showFullTitle: this.showFullTitle
|
||||
});
|
||||
},
|
||||
|
||||
didClickOutside() {
|
||||
if (!this.get("isExpanded")) return;
|
||||
if (!this.isExpanded) return;
|
||||
this.close();
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user