From 5c4bb63c1988f24526141c06aa8f2852470fe805 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Mon, 4 Mar 2024 15:02:42 -0800 Subject: [PATCH] NcListItem: don't explicitly set location Signed-off-by: Varun Patil --- src/components/NcListItem/NcListItem.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/NcListItem/NcListItem.vue b/src/components/NcListItem/NcListItem.vue index b990cc2c90..f7b8cf3f54 100644 --- a/src/components/NcListItem/NcListItem.vue +++ b/src/components/NcListItem/NcListItem.vue @@ -345,7 +345,6 @@ @focus="showActions" @focusout="handleBlur" @click="onClick($event, navigate, routerLinkHref)" - @keydown.enter="onClick($event, navigate, routerLinkHref)" @keydown.esc="hideActions"> @@ -630,8 +629,6 @@ export default { if (routerLinkHref) { navigate?.(event) event.preventDefault() - } else { - window.location = this.href } },