Skip to content

Commit

Permalink
(js) Fix event classification icon in month view
Browse files Browse the repository at this point in the history
Fixes #3711
  • Loading branch information
cgx committed Jun 3, 2016
1 parent 717bab7 commit ab74ef0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -4,6 +4,7 @@
Bug fixes
- [web] fixed error handling when renaming a mailbox
- [web] fixed user removal from ACLs in Administration module (#3713)
- [web] fixed event classification icon (private/confidential) in month view (#3711)

3.1.1 (2016-06-02)
------------------
Expand Down
Expand Up @@ -46,9 +46,9 @@
// Component has an alarm
' <md-icon ng-if="'+p+'block.component.c_nextalarm" class="material-icons icon-alarm"></md-icon>',
// Component is confidential
' <md-icon ng-if="'+p+'block.component.c_classification == 1" class="material-icons icon-visibility-off"></md-icon>',
' <md-icon ng-if="'+p+'block.component.c_classification == 2" class="material-icons icon-visibility-off"></md-icon>',
// Component is private
' <md-icon ng-if="'+p+'block.component.c_classification == 2" class="material-icons icon-vpn-key"></md-icon>',
' <md-icon ng-if="'+p+'block.component.c_classification == 1" class="material-icons icon-vpn-key"></md-icon>',
' </span>',
'</div>'
].join('');
Expand Down

0 comments on commit ab74ef0

Please sign in to comment.