Skip to content

Commit

Permalink
fix: queryFieldPane doesn't dissapear after returning from results page
Browse files Browse the repository at this point in the history
  • Loading branch information
mickol34 committed Oct 18, 2024
1 parent 8b8e12c commit d7cd66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mqueryfront/src/query/QueryLayoutManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const QueryLayoutManager = (props) => {
queryResults
) : null;

const queryFieldPane = isCollapsed ? null : (
const queryFieldPane = qhash && isCollapsed ? null : (
<div className={resultsTab ? "col-md-6" : "col-md-12"}>
<QueryField
readOnly={!!qhash}
Expand Down

0 comments on commit d7cd66a

Please sign in to comment.