Skip to content

Commit

Permalink
fix the build
Browse files Browse the repository at this point in the history
JsPrettier on Sublime was failing because: jonlabelle/SublimeJsPrettier#157 (comment)
  • Loading branch information
arpitjalan committed Feb 18, 2019
1 parent dc2776b commit 50f833d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ export default Ember.Controller.extend(ModalFunctionality, {

const isPrivateMessage = this.get("model.isPrivateMessage");
if (isPrivateMessage) {
this.set("selection", this.get("canSplitToPM") ? "new_message" : "existing_message");
this.set(
"selection",
this.get("canSplitToPM") ? "new_message" : "existing_message"
);
} else if (!this.get("canSplitTopic")) {
this.set("selection", "existing_topic");
Ember.run.next(() => $("#choose-topic-title").focus());
Expand Down

0 comments on commit 50f833d

Please sign in to comment.