fix null utcDateChanged in entity_changes, closes #1705

This commit is contained in:
zadam 2021-03-02 22:08:29 +01:00
parent 2c958eaacb
commit 5b5c2a2dbb

View File

@ -41,7 +41,7 @@ class Entity {
}
getUtcDateChanged() {
return this.utcDateModified;
return this.utcDateModified || this.utcDateCreated;
}
get repository() {