From 5f197ed1d8b0790365523f03de1b0d3da8359daf Mon Sep 17 00:00:00 2001 From: Alin Voinea Date: Wed, 31 Mar 2021 19:46:18 +0300 Subject: [PATCH] Disable tags on default View --- src/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.js b/src/index.js index 2bd1829..4036c7f 100644 --- a/src/index.js +++ b/src/index.js @@ -6,6 +6,10 @@ const applyConfig = (config) => { // Restrict block-style to Layout only config.settings.layoutOnlyBlockStyles = true; + + // Disable tags on View + config.settings.showTags = false; + return config; };