new(core.gbapp): Timestamp fields are now default.

This commit is contained in:
me@rodrigorodriguez.com 2024-10-15 10:55:10 -03:00
parent d3a2d55a7d
commit 7becf2980d

View file

@ -749,6 +749,10 @@ export class SystemKeywords {
public async saveToStorageBatch({ pid, table, rows }): Promise<void> {
const { min } = await DialogKeywords.getProcessInfo(pid);
if (typeof rows === 'object' && rows !== null) {
rows = [rows];
}
if (rows.length === 0) {
return;
}