From 3b7a538e612a2cf12edc505f2983969659599f8d Mon Sep 17 00:00:00 2001 From: Roni Choudhury Date: Wed, 5 Apr 2023 16:55:09 -0400 Subject: [PATCH] Fix typo --- web/src/views/DandisetLandingView/DandisetLandingView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/views/DandisetLandingView/DandisetLandingView.vue b/web/src/views/DandisetLandingView/DandisetLandingView.vue index f44f73ec3..315df8d52 100644 --- a/web/src/views/DandisetLandingView/DandisetLandingView.vue +++ b/web/src/views/DandisetLandingView/DandisetLandingView.vue @@ -122,7 +122,7 @@ onBeforeRouteLeave((to: Route, from: Route, next: NavigationGuardNext) => { // Prompt user if they try to leave the DLP with unsaved changes in the meditor if (!editorInterface.value?.transactionTracker?.isModified() // eslint-disable-next-line no-alert - || window.confirm('You have unsaved changes, are you suryhe you want to leave?')) { + || window.confirm('You have unsaved changes, are you sure you want to leave?')) { next(); return true; }