synced with master

This commit is contained in:
Gani Georgiev
2023-09-24 11:56:06 +03:00
33 changed files with 46 additions and 41 deletions
+2 -2
View File
@@ -66,9 +66,9 @@
updateStoredHiddenColumns();
}
$: hasCreated = !isView || (records.length > 0 && records[0].created != "");
$: hasCreated = !isView || (records.length > 0 && typeof records[0].created != "undefined");
$: hasUpdated = !isView || (records.length > 0 && records[0].updated != "");
$: hasUpdated = !isView || (records.length > 0 && typeof records[0].updated != "undefined");
$: collumnsToHide = [].concat(
isAuth