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.
1 parent 2de05b4 commit 3300c16Copy full SHA for 3300c16
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