fix(render): find => filter

This commit is contained in:
qingwei.li 2017-05-22 20:54:50 +08:00
parent bab76e004d
commit eca3368152
No known key found for this signature in database
GPG Key ID: B6DDC2F7AE80B2F4
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ function renderNameLink (vm) {
if (isPrimitive(vm.config.nameLink)) {
el.setAttribute('href', nameLink)
} else if (typeof nameLink === 'object') {
const match = Object.keys(nameLink).find(key => path.indexOf(key) > -1)
const match = Object.keys(nameLink).filter(key => path.indexOf(key) > -1)[0]
el.setAttribute('href', nameLink[match])
}

View File

@ -124,7 +124,7 @@ function updatePlaceholder (text, path) {
if (typeof text === 'string') {
$input.placeholder = text
} else {
const match = Object.keys(text).find(key => path.indexOf(key) > -1)
const match = Object.keys(text).filter(key => path.indexOf(key) > -1)[0]
$input.placeholder = text[match]
}
}
@ -133,7 +133,7 @@ function updateNoData (text, path) {
if (typeof text === 'string') {
NO_DATA_TEXT = text
} else {
const match = Object.keys(text).find(key => path.indexOf(key) > -1)
const match = Object.keys(text).filter(key => path.indexOf(key) > -1)[0]
NO_DATA_TEXT = text[match]
}
}