mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fix for queries cannot be run without refresh
This commit is contained in:
parent
cefb69e81a
commit
17031db21c
1 changed files with 5 additions and 1 deletions
|
|
@ -120,7 +120,11 @@ class Editor extends React.Component {
|
|||
this.setState(
|
||||
{
|
||||
dataQueries: data.data_queries,
|
||||
loadingDataQueries: false
|
||||
loadingDataQueries: false,
|
||||
app: {
|
||||
...this.state.app,
|
||||
data_queries: data.data_queries
|
||||
}
|
||||
},
|
||||
() => {
|
||||
let queryState = {};
|
||||
|
|
|
|||
Loading…
Reference in a new issue