diff --git a/client/src/components/instruments/FilterBar.vue b/client/src/components/instruments/FilterBar.vue
index 91d3692b..9581c200 100644
--- a/client/src/components/instruments/FilterBar.vue
+++ b/client/src/components/instruments/FilterBar.vue
@@ -11,7 +11,10 @@
/>
-
+
diff --git a/client/src/helpers/app-flavor.constants.ts b/client/src/helpers/app-flavor.constants.ts
index e554b01c..d4c37778 100644
--- a/client/src/helpers/app-flavor.constants.ts
+++ b/client/src/helpers/app-flavor.constants.ts
@@ -25,6 +25,7 @@ export const defaultFlavorValues: FlavorValues = {
showEHB: true,
helloIllustration: 'HelloIllustration',
showModuleFilter: false,
+ showLanguageFilter: false,
};
export const myKvValues: FlavorValues = {
@@ -52,6 +53,7 @@ export const myKvValues: FlavorValues = {
showEHB: false,
helloIllustration: 'HelloMyKVIllustration',
showModuleFilter: true,
+ showLanguageFilter: false,
};
export const dhaValues: FlavorValues = Object.assign({}, myKvValues, {
diff --git a/client/src/helpers/types.ts b/client/src/helpers/types.ts
index 14b39716..9b9fa822 100644
--- a/client/src/helpers/types.ts
+++ b/client/src/helpers/types.ts
@@ -19,4 +19,5 @@ export interface FlavorValues {
showEHB: boolean;
helloIllustration: string;
showModuleFilter: boolean;
+ showLanguageFilter: boolean;
}