summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-10-15 14:36:45 -0700
committerGitHub <noreply@github.com>2024-10-15 21:36:45 +0000
commit3065dadea3792539f050346c534afc0a7821c2b6 (patch)
tree98eaf4b3640040790494dcc292fbe060b9b5b94b
parent403da30cebe7caba11ba96a76a3534eebf6c8deb (diff)
fix(ext/console): apply coloring for console.table (#26280)
Fixes #26159
-rw-r--r--ext/console/01_console.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/console/01_console.js b/ext/console/01_console.js
index a977a2719..3c07cf64a 100644
--- a/ext/console/01_console.js
+++ b/ext/console/01_console.js
@@ -3256,7 +3256,7 @@ class Console {
const stringifyValue = (value) =>
inspectValueWithQuotes(value, {
- ...getDefaultInspectOptions(),
+ ...getConsoleInspectOptions(noColorStdout()),
depth: 1,
compact: true,
});