mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
Fix request, response, responseHeaders from resolved query not being part of dependency graph
This commit is contained in:
parent
995a73254c
commit
6a2b76c5b2
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ export const createResolvedSlice = (set, get) => ({
|
|||
);
|
||||
|
||||
Object.entries(details).forEach(([key, value]) => {
|
||||
if (['isLoading', 'data', 'rawData'].includes(key)) {
|
||||
if (['isLoading', 'data', 'rawData', 'request', 'response', 'responseHeaders'].includes(key)) {
|
||||
if (typeof value !== 'function') get().updateDependencyValues(`queries.${queryId}.${key}`);
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue