"make cc/bcc visible" now makes BOTH visible.
authorArt Cancro <ajc@citadel.org>
Wed, 29 Nov 2023 04:31:41 +0000 (18:31 -1000)
committerArt Cancro <ajc@citadel.org>
Wed, 29 Nov 2023 04:31:41 +0000 (18:31 -1000)
Somewhere along the line it lost CC and only showed BCC.

webcit-ng/static/js/view_mail.js

index cb0e3814a101d3fabe73c69a439d14a6f2049e64..0e37bd0d9cd417f3636ea67a9cefefb2dff8da1c 100644 (file)
@@ -553,6 +553,8 @@ function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subjec
 // It is also called automatically during a Reply when CC is pre-populated.
 function make_cc_bcc_visible() {
        document.getElementById("ctdl-cc-bcc-buttons").style.display = "none";
+       document.getElementById("ctdl-compose-cc-label").style.display = "block";
+       document.getElementById("ctdl-compose-cc-field").style.display = "block";
        document.getElementById("ctdl-compose-bcc-label").style.display = "block";
        document.getElementById("ctdl-compose-bcc-field").style.display = "block";
 }