@abi-software/map-utilities 1.2.0-beta.6 → 1.2.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
<el-select
|
|
100
100
|
:teleported="false"
|
|
101
101
|
v-model="evidencePrefix"
|
|
102
|
-
placeholder="
|
|
102
|
+
placeholder="No Prefix"
|
|
103
103
|
class="select-box"
|
|
104
104
|
popper-class="flatmap_dropdown"
|
|
105
105
|
>
|
|
@@ -164,8 +164,8 @@ export default {
|
|
|
164
164
|
Resource: "resourceId",
|
|
165
165
|
},
|
|
166
166
|
editing: false,
|
|
167
|
-
evidencePrefixes: ["DOI:", "PMID:"],
|
|
168
|
-
evidencePrefix: "
|
|
167
|
+
evidencePrefixes: ["", "DOI:", "PMID:"],
|
|
168
|
+
evidencePrefix: "",
|
|
169
169
|
evidence: [],
|
|
170
170
|
authenticated: false,
|
|
171
171
|
newEvidence: "",
|
|
@@ -267,6 +267,8 @@ export default {
|
|
|
267
267
|
"https://pubmed.ncbi.nlm.nih.gov/"
|
|
268
268
|
);
|
|
269
269
|
evidenceURLs.push(new URL(link));
|
|
270
|
+
} else {
|
|
271
|
+
evidenceURLs.push(evidence);
|
|
270
272
|
}
|
|
271
273
|
});
|
|
272
274
|
const userAnnotation = {
|