From ce843503c8d0db8fc7d7d5f50c2f23fee6372e6d Mon Sep 17 00:00:00 2001 From: Xinyuan Lin Date: Mon, 9 Feb 2026 21:47:04 -0800 Subject: [PATCH] init --- .../component/user/share-access/share-access.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/dashboard/component/user/share-access/share-access.component.ts b/frontend/src/app/dashboard/component/user/share-access/share-access.component.ts index 3a42129165c..b2c145d9642 100644 --- a/frontend/src/app/dashboard/component/user/share-access/share-access.component.ts +++ b/frontend/src/app/dashboard/component/user/share-access/share-access.component.ts @@ -155,7 +155,7 @@ export class ShareAccessComponent implements OnInit, OnDestroy { this.emailTags.forEach(email => { let message = `${this.userService.getCurrentUser()?.email} shared a ${this.type} with you`; if (this.type !== "computing-unit") - message += `, access the ${this.type} at ${location.origin}/workflow/${this.id}`; + message += `, access the ${this.type} at ${location.origin}/dashboard/user/workflow/${this.id}`; this.accessService .grantAccess(this.type, this.id, email, this.validateForm.value.accessLevel) .pipe(untilDestroyed(this))