You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: client/packages/lowcoder/src/comps/queries/queryComp.tsx
+9-19Lines changed: 9 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -135,9 +135,9 @@ const childrenMap = {
135
135
data: stateComp<JSONValue>(null),
136
136
extra: stateComp<JSONValue>({}),
137
137
isFetching: stateComp<boolean>(false),
138
+
variable: stateComp<JSONObject>({}),
138
139
lastQueryStartTime: stateComp<number>(-1),// The last execution time of the query, in order to avoid multiple executions overwriting each other, not persistent
139
140
latestEndTime: stateComp<number>(0),// The time when the query was last executed
140
-
variable: stateComp<number>(0),// The time when the query was last executed
141
141
runTime: stateComp<number>(0),// query run time
142
142
143
143
datasourceId: StringControl,
@@ -364,6 +364,14 @@ QueryCompTmp = class extends QueryCompTmp {
0 commit comments