renamed hideInAutocomplete label to archived

This commit is contained in:
azivner
2018-06-07 19:26:28 -04:00
parent c8c533844e
commit 385144451b
6 changed files with 17 additions and 16 deletions

View File

@@ -6,7 +6,7 @@ class NoteShort {
this.isProtected = row.isProtected;
this.type = row.type;
this.mime = row.mime;
this.hideInAutocomplete = row.hideInAutocomplete;
this.archived = row.archived;
}
isJson() {
@@ -59,7 +59,7 @@ class NoteShort {
get dto() {
const dto = Object.assign({}, this);
delete dto.treeCache;
delete dto.hideInAutocomplete;
delete dto.archived;
return dto;
}