Skip to content

feat: Add UI for Start with a Query Flow CLOUDP-311785 #6881

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Apr 25, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
using a variable that will be in another pr
  • Loading branch information
rubydong committed Apr 23, 2025
commit 1a3c96ddef5b36663e00a906b5376cff3df5a0ba
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ function CreateIndexForm({
});
}, [schemaFields]);

const showIndexesGuidanceQueryFlow =
showIndexesGuidanceVariant && currentTab === 'QueryFlow';

return (
<>
<div
Expand Down Expand Up @@ -125,7 +128,7 @@ function CreateIndexForm({
/>
) : null}

{currentTab === 'QueryFlow' && <QueryFlowSection />}
{showIndexesGuidanceQueryFlow && <QueryFlowSection />}
</div>
<Accordion data-testid="create-index-modal-toggle-options" text="Options">
<div
Expand Down
Loading