mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Clean up empty pod log entries (#3010)
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
512946a397
commit
d6e72ddc1c
@ -107,7 +107,7 @@ export class LogStore {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Add newly received logs to bottom
|
// Add newly received logs to bottom
|
||||||
this.podLogs.set(tabId, [...oldLogs, ...logs]);
|
this.podLogs.set(tabId, [...oldLogs, ...logs.filter(Boolean)]);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handlerError(tabId, error);
|
this.handlerError(tabId, error);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user