Skip to content

Commit

Permalink
Fix translationPath$ RxJS pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
LeanidShutau committed Nov 26, 2018
1 parent f026bcc commit 075a05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin_discovery/find_plugin_specs.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export function findPluginSpecs(settings, configToMutate) {
const translationPath$ = config$.pipe(
mergeMap(config =>
Rx.zip(
...config.get('plugins.translations.paths').map(path => Rx.of([path])),
Rx.of(config.get('plugins.translations.paths')),
...config.get('plugins.translations.scanDirs').map(
path => createChildDirectory$(path).pipe(
toArray()
Expand Down

0 comments on commit 075a05e

Please sign in to comment.