patches v1.4.1 #90

Merged
jkeffects merged 3 commits from develop into main 2025-04-17 07:24:35 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 8bee509090 - Show all commits

View file

@ -12,6 +12,7 @@ export default abstract class QueryStoreFactory {
id: record.id, id: record.id,
title: record.title, title: record.title,
query: record.query.startsWith("{") ? JSON.parse(record.query) : record.query, query: record.query.startsWith("{") ? JSON.parse(record.query) : record.query,
updatedAt: record.updatedAt,
}; };
} }

View file

@ -4,4 +4,5 @@ export interface QueryStoreViewModel {
id: string; id: string;
title: string; title: string;
query: string | DynamicQueryStructure; query: string | DynamicQueryStructure;
updatedAt: Date;
} }