mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-07 11:29:43 +00:00
(js) Fix display of CC/BCC fields in msg editor
This commit is contained in:
@@ -12,8 +12,9 @@ Bug fixes
|
||||
- [web] fixed missing columns in SELECT statements (PostgreSQL)
|
||||
- [web] fixed display of ghosts when dragging events
|
||||
- [web] fixed management of mail labels in Preferences module
|
||||
- [web] respect super user privileges to create in any calendar and addressbook
|
||||
- [web] properly null-terminate IS8601-formatted dates (#3539)
|
||||
- [web] respect super user privileges to create in any calendar and addressbook (#3533)
|
||||
- [web] properly null-terminate IS8601-formatted dates (#3539)
|
||||
- [web] display CC/BCC fields in message editor when initialized with values
|
||||
|
||||
3.0.2 (2016-03-04)
|
||||
------------------
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
vm.autocomplete = {to: {}, cc: {}, bcc: {}};
|
||||
vm.autosave = null;
|
||||
vm.autosaveDrafts = autosaveDrafts;
|
||||
vm.hideCc = true;
|
||||
vm.hideBcc = true;
|
||||
vm.hideCc = (stateMessage.editable.cc.length === 0);
|
||||
vm.hideBcc = (stateMessage.editable.bcc.length === 0);
|
||||
vm.cancel = cancel;
|
||||
vm.save = save;
|
||||
vm.send = send;
|
||||
|
||||
Reference in New Issue
Block a user