mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fixed bug that caused null values for dyn vars in preview queries
This commit is contained in:
parent
ccd5c3c1c4
commit
796d7b1195
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ function getQueryVariables(options, state) {
|
|||
}
|
||||
|
||||
export function previewQuery(_ref, query) {
|
||||
const options = getQueryVariables(query.options, _ref.state.currentState);
|
||||
const options = getQueryVariables(query.options, _ref.props.currentState);
|
||||
|
||||
_ref.setState({ previewLoading: true });
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue