From eaeab4b14d3a9ef4e16864b9b021648db0eeec50 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 24 Sep 2023 17:07:18 -0400 Subject: [PATCH] Improving my template-literal-fu --- webcit-ng/static/js/view_mail.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/webcit-ng/static/js/view_mail.js b/webcit-ng/static/js/view_mail.js index 28e870872..4553b8bff 100644 --- a/webcit-ng/static/js/view_mail.js +++ b/webcit-ng/static/js/view_mail.js @@ -511,11 +511,11 @@ function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subjec compose_screen += `
- ` + _("Send message") + ` - ` + _("Save to Drafts") + ` - ` + _("Attachments:") + `` + num_attachments + ` - ` + _("Contacts") + ` - ` + _("Cancel") + ` + ${_("Send message")} + ${_("Save to Drafts")} + ${_("Attachments:")} ${num_attachments} + ${_("Contacts")} + ${_("Cancel")}
` ; -- 2.39.2