diff --git a/package.json b/package.json index 5eafe1d..5434263 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "access-page", - "version": "1.5.1", + "version": "1.5.2", "description": "Visualizations of data usage across the archive.", "private": true, "type": "module", diff --git a/src/plots.ts b/src/plots.ts index 5d259d4..c51c9e8 100644 --- a/src/plots.ts +++ b/src/plots.ts @@ -908,14 +908,14 @@ function update_totals(dandiset_id: string) { `by ${visitors} unique visitors across ${regions} regions in ` + `${countries} countries. *`; totals_element!.innerHTML = dandiset_id === "undetermined" - ? header + `
However, the usage could not be uniquely associated with a particular Dandiset.
This can occur if the same file exists within more than one Dandiset at a time.` + ? header + `
However, the usage could not be uniquely associated with a particular Dandiset.
The primary cause of this is when an asset is removed from a 'draft' state prior to being made persistent by publication.` : header; // Add the footnote const footnote = document.createElement("div"); footnote.style.fontSize = "0.5em"; footnote.style.marginTop = "7px"; - footnote.innerHTML = "* Dandiset source determination is heuristic and may improve over time. Activity that cannot be confidently attributed to one Dandiset is reported as undetermined."; + footnote.innerHTML = "* Dandiset source determination is heuristic and may change over time.
Activity that cannot be confidently attributed to a Dandiset or any other field is reported as 'undetermined'."; totals_element!.appendChild(footnote); } catch (error) { console.error("Error:", error);