We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7cd0944 + 3300c16 commit f24a7a5Copy full SHA for f24a7a5
ui/litellm-dashboard/src/components/view_logs/log_filter_logic.tsx
@@ -251,6 +251,15 @@ export function useLogFilterLogic({
251
// Reset filters state
252
setFilters(defaultFilters);
253
254
+ // Clear backend filtered logs to ensure fresh render
255
+ setBackendFilteredLogs({
256
+ data: [],
257
+ total: 0,
258
+ page: 1,
259
+ page_size: 50,
260
+ total_pages: 0
261
+ });
262
+
263
// Reset selections
264
debouncedSearch(defaultFilters, 1);
265
};
0 commit comments