From a55d50fd4b09c87f40b0d272d685e0f885e81eb5 Mon Sep 17 00:00:00 2001 From: Andrew Watkins Date: Mon, 26 Mar 2018 16:48:14 -0700 Subject: [PATCH] Wrap ifql navigation with feature flag --- ui/src/side_nav/containers/SideNav.tsx | 7 ------- ui/tsconfig.json | 12 ++++++++++-- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/ui/src/side_nav/containers/SideNav.tsx b/ui/src/side_nav/containers/SideNav.tsx index 905ed1e253..ca2d0f7760 100644 --- a/ui/src/side_nav/containers/SideNav.tsx +++ b/ui/src/side_nav/containers/SideNav.tsx @@ -139,13 +139,6 @@ class SideNav extends PureComponent { sourcePrefix={sourcePrefix} /> ) : null} - - - ) } diff --git a/ui/tsconfig.json b/ui/tsconfig.json index 23e8473050..f5cb170d85 100644 --- a/ui/tsconfig.json +++ b/ui/tsconfig.json @@ -1,6 +1,14 @@ { "compilerOptions": { - "types": ["node", "chai", "lodash", "enzyme", "react", "prop-types", "jest"], + "types": [ + "node", + "chai", + "lodash", + "enzyme", + "react", + "prop-types", + "jest" + ], "target": "es6", "module": "es2015", "moduleResolution": "node", @@ -25,7 +33,7 @@ "checkJs": false, "sourceMap": true, "baseUrl": "./", - "rootDir": "./src", + "rootDir": "./src" }, "exclude": ["./assets/*", "./build/*", "./node_modules/*"] }