Skip to content

Commit

Permalink
Allow to click on resulting search query
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmz committed Oct 31, 2024
1 parent 4da16f3 commit e73f583
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/advanced-search-form/advanced-search-form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,10 @@ export function AdvancedSearchForm() {
</Section>
{resultingQuery ? (
<p>
Search query: <code>{resultingQuery}</code>
Search query:{' '}
<ButtonLink tag="code" onClick={onSearch}>
{resultingQuery}
</ButtonLink>
</p>
) : null}
{showFullDocs ? (
Expand Down

0 comments on commit e73f583

Please sign in to comment.