Unverified Commit d6e72ddc authored by Alex Andreev's avatar Alex Andreev Committed by GitHub
Browse files

Clean up empty pod log entries (#3010)

Signed-off-by: default avatarAlex Andreev <alex.andreev.email@gmail.com>
parent 512946a3
Showing with 1 addition and 1 deletion
+1 -1
......@@ -107,7 +107,7 @@ export class LogStore {
});
// Add newly received logs to bottom
this.podLogs.set(tabId, [...oldLogs, ...logs]);
this.podLogs.set(tabId, [...oldLogs, ...logs.filter(Boolean)]);
} catch (error) {
this.handlerError(tabId, error);
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment