Skip to content

Commit 9972901

Browse files
committed
test: add dependencies
1 parent 555c7f4 commit 9972901

File tree

4 files changed

+9205
-10530
lines changed

4 files changed

+9205
-10530
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
node_modules
77
npm-debug.log
88
coverage
9-
env.config.*
109

1110
dist/
1211
src/i18n/transifex_input.json
@@ -27,5 +26,3 @@ module.config.js
2726
# Local environment overrides
2827
.env.private
2928

30-
31-
env.config.jsx

env.config.jsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { PLUGIN_OPERATIONS } from '@openedx/frontend-plugin-framework';
2+
3+
const config = {
4+
pluginSlots: {
5+
'org.openedx.frontend.layout.footer_lang_selector.v1': {
6+
keepDefault: true,
7+
plugins: [
8+
{
9+
op: PLUGIN_OPERATIONS.Modify,
10+
widgetId: 'default_contents',
11+
fn: (widget) => ({ ...widget, content: { supportedLanguages: ['ar', 'es-419', 'en', 'ru']}})
12+
},
13+
]
14+
}
15+
},
16+
}
17+
18+
export default config;

0 commit comments

Comments
 (0)