Spaces in titles are replaced by hyphen for category title matching to support spaces in titles.
This commit is contained in:
@@ -21,7 +21,7 @@ export const getters = {
|
|||||||
findCategory: state => categoryTitle => {
|
findCategory: state => categoryTitle => {
|
||||||
// equalsCategoryTitle :: Category -> Bool
|
// equalsCategoryTitle :: Category -> Bool
|
||||||
const equalsCategoryTitle = R.compose(
|
const equalsCategoryTitle = R.compose(
|
||||||
R.equals(cleanString(categoryTitle)), cleanString, R.prop('title'),
|
R.equals(cleanString(categoryTitle)), R.replace(/ /g, '-') ,cleanString, R.prop('title'),
|
||||||
)
|
)
|
||||||
// findCategory :: [Category] -> Category
|
// findCategory :: [Category] -> Category
|
||||||
const findCategory = R.find(equalsCategoryTitle)
|
const findCategory = R.find(equalsCategoryTitle)
|
||||||
|
|||||||
Reference in New Issue
Block a user