compose-actions: Update trigger for composing a new direct message.

Updates the trigger in the compose box from "new private message"
to "new direct message".
This commit is contained in:
Lauryn Menard
2023-06-16 11:56:47 +02:00
committed by Tim Abbott
parent 0945f2dee6
commit 3c6d283aa9
3 changed files with 4 additions and 4 deletions

View File

@@ -167,7 +167,7 @@ export function initialize() {
});
$("body").on("click", ".compose_private_button", () => {
compose_actions.start("private", {trigger: "new private message"});
compose_actions.start("private", {trigger: "new direct message"});
});
$("body").on("click", ".compose_reply_button", () => {