diff --git a/e2e/utils.ts b/e2e/utils.ts
index 93f9831bd..234e44958 100644
--- a/e2e/utils.ts
+++ b/e2e/utils.ts
@@ -26,7 +26,7 @@ async function registerNewUser(page: Page) {
await page.getByPlaceholder("Password").first().fill(password);
await page.getByPlaceholder("Password (again)").click();
await page.getByPlaceholder("Password (again)").fill(password);
- await page.getByRole("button", { name: "Sign Up " }).click();
+ await page.getByRole("button", { name: "Sign Up" }).click();
await page.getByLabel("First Name").click({ force: true });
await page.getByLabel("First Name").fill(firstname);
await page.getByLabel("Last Name").click({ force: true });
@@ -69,7 +69,7 @@ async function gotoAndLogin(page: Page) {
await page.getByPlaceholder("Email address").fill("admin@kitware.com");
await page.getByPlaceholder("Password").click();
await page.getByPlaceholder("Password").fill("password");
- await page.getByRole("button", { name: "Sign In " }).click();
+ await page.getByRole("button", { name: "Sign In" }).click(); // GitHub sign in button
await page.getByRole("button", { name: TEST_USER_INITIALS }).waitFor({ state: "visible" });
}
diff --git a/web/src/components/AppBar/AppBar.vue b/web/src/components/AppBar/AppBar.vue
index 6d1ff6a0d..b3b9d7ae4 100644
--- a/web/src/components/AppBar/AppBar.vue
+++ b/web/src/components/AppBar/AppBar.vue
@@ -140,7 +140,7 @@ import {
user,
} from '@/rest';
import {
- emberAboutUrl, dandiDocumentationUrl,
+ emberAboutUrl, emberDocumentationUrl,
} from '@/utils/constants';
import UserMenu from '@/components/AppBar/UserMenu.vue';
import logo from '@/assets/ember-logo.png';
@@ -184,7 +184,7 @@ const navItems: NavigationItem[] = [
},
{
text: 'Documentation',
- to: dandiDocumentationUrl,
+ to: emberDocumentationUrl,
external: true,
},
// {
diff --git a/web/src/components/DandiFooter.vue b/web/src/components/DandiFooter.vue
index be814eb1e..91f420bdb 100644
--- a/web/src/components/DandiFooter.vue
+++ b/web/src/components/DandiFooter.vue
@@ -9,7 +9,7 @@
Terms
@@ -17,7 +17,7 @@
/ Policies
@@ -83,6 +83,16 @@
mdi-open-in-new
+ - Sentry
+
+ mdi-open-in-new
+
+
-
import CookieBanner from './CookieBanner.vue';
-import { dandiUrl } from '@/utils/constants';
+import { dandiUrl, dandiDocumentationUrl } from '@/utils/constants';
const version = import.meta.env.VITE_APP_VERSION;
const githubLink = import.meta.env.VITE_APP_GIT_REVISION ? `https://github.com/aplbrain/dandi-archive/commit/${import.meta.env.VITE_APP_GIT_REVISION}` : 'https://github.com/aplbrain/dandi-archive';
diff --git a/web/src/components/FileBrowser/FileUploadInstructions.vue b/web/src/components/FileBrowser/FileUploadInstructions.vue
index fff0d09f5..2d69117ac 100644
--- a/web/src/components/FileBrowser/FileUploadInstructions.vue
+++ b/web/src/components/FileBrowser/FileUploadInstructions.vue
@@ -36,7 +36,7 @@
Follow the installation instructions in the
-
+
DANDI Docs
.
@@ -50,6 +50,7 @@