Hide tags string for protected notes

This commit is contained in:
Mo Bitar
2019-01-16 14:04:01 -06:00
parent 54ab311f52
commit 537151c1c5

View File

@@ -394,7 +394,7 @@ angular.module('app')
} }
this.shouldShowTags = function(note) { this.shouldShowTags = function(note) {
if(this.hideTags) { if(this.hideTags || note.content.protected) {
return false; return false;
} }