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 a5aba3f commit e157582Copy full SHA for e157582
packages/webview/src/component/pods/PodLogs.svelte
@@ -107,9 +107,9 @@ const calculatePrefixLength = (): number => {
107
};
108
109
/**
110
- + * Sets up ANSI color mappings for container name prefixes in multi-container pods.
111
- + * Cycles through available colors using modulo when there are more containers than colors.
112
- */
+ * Sets up ANSI color mappings for container name prefixes in multi-container pods.
+ * Cycles through available colors using modulo when there are more containers than colors.
+ */
113
const setupPrefixColours = (): void => {
114
object.spec?.containers.forEach((container, index) => {
115
const colour = ansi256Colours[index % ansi256Colours.length];
0 commit comments