mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Fleet] Fix integration category redirect after loading categories (#113812)
This commit is contained in:
parent
d038f1e214
commit
3efad94646
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ const AvailablePackages: React.FC = memo(() => {
|
|||
isLoadingCategories,
|
||||
]);
|
||||
|
||||
if (!categoryExists(selectedCategory, categories)) {
|
||||
if (!isLoadingCategories && !categoryExists(selectedCategory, categories)) {
|
||||
history.replace(pagePathGetters.integrations_all({ category: '', searchTerm: searchParam })[1]);
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue