mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-28 13:55:47 +00:00
Mizu cant show more than 10000 entries (#973)
This commit is contained in:
@@ -127,7 +127,7 @@ export const EntriesList: React.FC<EntriesListProps> = ({
|
||||
if (!focusedEntryId) setFocusedEntryId(entry.id.toString());
|
||||
const newEntries = [...entries, entry];
|
||||
if (newEntries.length === 10001) {
|
||||
setLeftOffTop(newEntries[0].entry.id);
|
||||
setLeftOffTop(newEntries[0].id);
|
||||
newEntries.shift();
|
||||
setNoMoreDataTop(false);
|
||||
}
|
||||
|
Reference in New Issue
Block a user