From ca8efe1caa24bf54e65f9ba7bafb6593672bd8a1 Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 13 Jun 2020 01:43:46 -0400 Subject: [PATCH] Ensure we show the exact boolean --- packages/docusaurus-plugin-debug/src/theme/Debug/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docusaurus-plugin-debug/src/theme/Debug/index.js b/packages/docusaurus-plugin-debug/src/theme/Debug/index.js index beef72aa4d30..74446ae2e5f3 100644 --- a/packages/docusaurus-plugin-debug/src/theme/Debug/index.js +++ b/packages/docusaurus-plugin-debug/src/theme/Debug/index.js @@ -34,7 +34,7 @@ function Debug() { {routes.map(({path, exact}) => (
  • Route: {path}
    -
    Is exact: {Boolean(exact)}
    +
    Is exact: {String(Boolean(exact))}
  • ))}