From 3065dadea3792539f050346c534afc0a7821c2b6 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Tue, 15 Oct 2024 14:36:45 -0700 Subject: [PATCH] fix(ext/console): apply coloring for console.table (#26280) Fixes #26159 --- ext/console/01_console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/console/01_console.js b/ext/console/01_console.js index a977a27195..3c07cf64aa 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, });