mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
fix(render): find => filter
This commit is contained in:
parent
bab76e004d
commit
eca3368152
@ -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])
|
||||
}
|
||||
|
||||
@ -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]
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user