diff --git a/src/state/selectors/manifests.js b/src/state/selectors/manifests.js index 496d8456216a94e999cce9b7940b7e2fe9d6cf59..86adff0188cb8b0ea3ebf9d500de28e25ff48c45 100644 --- a/src/state/selectors/manifests.js +++ b/src/state/selectors/manifests.js @@ -322,9 +322,9 @@ export const getManifestTitle = createSelector( * @return {String|null} */ export const getManifestDescription = createSelector( - [getManifestoInstance], - manifest => manifest - && manifest.getDescription().getValue(), + [getLocale, getManifestoInstance], + (locale, manifest) => manifest + && manifest.getDescription().getValue(locale), ); /** @@ -341,7 +341,7 @@ export const getManifestSummary = createSelector( getManifestLocale, ], (summary, locale) => summary - && PropertyValue.parse(summary, locale).getValue(), + && PropertyValue.parse(summary, locale).getValue(locale), ); /**