remove the created and updated fields from the view API Preview and listings if the query doesn't have them
This commit is contained in:
@@ -62,9 +62,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
|
||||
|
||||
Reference in New Issue
Block a user