(js) Fix display of CC/BCC fields in msg editor

This commit is contained in:
Francis Lachapelle
2016-03-15 09:54:15 -04:00
parent 6d18db5499
commit 0af364d076
2 changed files with 5 additions and 4 deletions
@@ -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;