App: Disable the global filter

This disables the global filter on the top of the page. So later when an option to filter images by name is added,
there won't be multiple filters which could lead to confusion.
This commit is contained in:
regexowl 2023-02-22 11:35:16 +01:00 committed by Sanne Raymaekers
parent 65de66f66d
commit a0ed7cd37e

View file

@ -16,6 +16,7 @@ const App = (props) => {
document.title = 'Image Builder | Red Hat Insights';
insights.chrome.init();
insights.chrome.identifyApp('image-builder');
insights.chrome.hideGlobalFilter();
const unregister = insights.chrome.on('APP_NAVIGATION', () =>
navigate(resolveRelPath(''))
);