Skip to content

Commit

Permalink
Fix search interceptor toast lifetime (#61133)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasolson authored Mar 25, 2020
1 parent cfb7c0d commit 75aa207
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/data/public/search/search_interceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class SearchInterceptor {
}),
},
{
toastLifeTimeMs: Infinity,
toastLifeTimeMs: 1000000,
}
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class EnhancedSearchInterceptor extends SearchInterceptor {
}),
},
{
toastLifeTimeMs: Infinity,
toastLifeTimeMs: 1000000,
}
);
};
Expand Down

0 comments on commit 75aa207

Please sign in to comment.