mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 13:53:48 +01:00
Fix select for multiple DOIs
This commit is contained in:
parent
f81b0a8653
commit
971f464ee6
@ -235,7 +235,9 @@ draft: false
|
|||||||
for (const val of vals) {
|
for (const val of vals) {
|
||||||
for (const set of publis.sets.values()) {
|
for (const set of publis.sets.values()) {
|
||||||
if (set.includes(val)) {
|
if (set.includes(val)) {
|
||||||
newvals.push(set)
|
if (!newvals.some(v=>JSON.stringify(v)===JSON.stringify(set))) {
|
||||||
|
newvals.push(set)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user