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 } },