From a4c67ac440d8ef231d7be4c4a2b7ecb179717de2 Mon Sep 17 00:00:00 2001 From: Alessia Peviani Date: Mon, 5 Jun 2023 14:10:03 +0200 Subject: [PATCH] Add showTopBar option to genetics/src/config.js --- apps/genetics/src/config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/genetics/src/config.js b/apps/genetics/src/config.js index 748660a49..00f8b4812 100644 --- a/apps/genetics/src/config.js +++ b/apps/genetics/src/config.js @@ -8,6 +8,7 @@ const config = { platformUrl: window.configPlatformUrl ? window.configPlatformUrl.replace(/\/$/, '') : 'https://platform.opentargets.org', + showTopBar: window.configShowTopBar ?? false, }; export default config;