mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 16:25:51 +01:00
* refactoring of repository layer to represent booleans as true/false instead of 1/0
* show list of inherited attributes, fixes #136 * properly work with inheritance
This commit is contained in:
@@ -7,6 +7,10 @@ class Entity {
|
||||
for (const key in row) {
|
||||
this[key] = row[key];
|
||||
}
|
||||
|
||||
if ('isDeleted' in this) {
|
||||
this.isDeleted = !!this.isDeleted;
|
||||
}
|
||||
}
|
||||
|
||||
beforeSaving() {
|
||||
|
||||
Reference in New Issue
Block a user