Skip to content
Snippets Groups Projects
Verified Commit 6e9dc83f authored by Dennis Collaris's avatar Dennis Collaris
Browse files

fix: block switching the active query when querying the backend

parent 7215c727
No related branches found
Tags v1.146.2
1 merge request!416fix: block switching the active query when querying the backend
Pipeline #145289 passed
......@@ -115,7 +115,9 @@ export const QueryBuilderNav = (props: QueryBuilderNavProps) => {
</Tooltip>
</TooltipProvider>
</div>
<Tabs className="-my-px overflow-x-auto overflow-y-hidden no-scrollbar divide-x divide-secondary-200 border-x">
<Tabs
className={`-my-px overflow-x-auto overflow-y-hidden no-scrollbar divide-x divide-secondary-200 border-x ${result.queryingBackend ? 'pointer-events-none' : ''}`}
>
{activeSS.queryStates.openQueryArray
.filter(query => query.id != null)
.map((query, i) => (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment