10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 06:01:49 +02:00

Fix publication not shown in select when it's not in sets

This commit is contained in:
Mickaël Véril 2020-01-09 10:55:24 +01:00
parent 13f775a03c
commit abae66d2b3
2 changed files with 10 additions and 4 deletions

View File

@ -125,10 +125,15 @@ draft: false
var op = $("<option/>", { var op = $("<option/>", {
value: JSON.stringify(val) value: JSON.stringify(val)
}) })
if ($(this).attr("name") == "DOI" && sets.has(val.string)) { if ($(this).attr("name") == "DOI") {
str=sets.get(val.string) if (sets.has(val.string)) {
if(val.IsSupporting){ str=sets.get(val.string)
str+=" (SI)" if(val.IsSupporting){
str+=" (SI)"
}
}
else{
str=val.toString()
} }
$(op).text(str) $(op).text(str)
} }

View File

@ -118,6 +118,7 @@ class DOI {
if (this.IsSupporting) { if (this.IsSupporting) {
str+=" "+"(SI)" str+=" "+"(SI)"
} }
return str
}; };
get url() { get url() {
return new URL(this.string, 'https://doi.org').toString() return new URL(this.string, 'https://doi.org').toString()