From 2ec0d74380cf102b023185a1446b4a8ab36e7a25 Mon Sep 17 00:00:00 2001 From: vpsx <19900057+vpsx@users.noreply.github.com> Date: Fri, 1 Nov 2019 16:26:28 -0500 Subject: [PATCH] fix(profile-default): default to showing fence project access on profile (#616) --- src/localconf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/localconf.js b/src/localconf.js index f8cbf4d1da..afe83872b8 100644 --- a/src/localconf.js +++ b/src/localconf.js @@ -108,7 +108,7 @@ function buildConfig(opts) { showArboristAuthzOnProfile = config.showArboristAuthzOnProfile; } - let showFenceAuthzOnProfile = false; + let showFenceAuthzOnProfile = true; if (config.showFenceAuthzOnProfile) { showFenceAuthzOnProfile = config.showFenceAuthzOnProfile; }