Skip to content

Commit

Permalink
show AppInfo only on search results
Browse files Browse the repository at this point in the history
  • Loading branch information
zotya committed Dec 2, 2022
1 parent e92ec1c commit 9ec4b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion searchlib/components/SearchView/SearchView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const SearchView = (props) => {
sideContent={null}
bodyHeader={<SampleQueryPrompt />}
bodyContent={<BodyContent {...props} wasInteracted={wasInteracted} />}
bodyFooter={<AppInfo appConfig={appConfig} />}
bodyFooter={wasInteracted ? <AppInfo appConfig={appConfig} /> : <></>}
/>
</div>
);
Expand Down

0 comments on commit 9ec4b63

Please sign in to comment.