Skip to content

Commit

Permalink
fix(roller): remove trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
Werner committed Jun 3, 2021
1 parent 9725359 commit babea1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/roller.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class LMRTFYRoller extends Application {
this.close();
}

export _tagMessage(candidate, data, options) {
_tagMessage(candidate, data, options) {
let update = {flags: {lmrtfy: {"message": this.data.message, "data": this.data.attach}}};
candidate.data.update(update);
}
Expand Down Expand Up @@ -193,7 +193,7 @@ class LMRTFYRoller extends Application {
continue;
}
}
ChatMessage.create(chatMessages);
ChatMessage.create(chatMessages);

event.currentTarget.disabled = true;
if (this.element.find("button").filter((i, e) => !e.disabled).length === 0)
Expand Down

0 comments on commit babea1e

Please sign in to comment.