Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/NcListItem/NcListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ The `actions-icon` slot can be used to pass icon to the inner NcActions componen
@focus="showActions"
@focusout="handleBlur"
@click="onClick($event, navigate, routerLinkHref)"
@dragstart="$emit('dragstart', $event)"
@keydown.esc="hideActions">
<!-- @slot This slot is used for the NcAvatar or icon, the content of this slot must not be interactive -->
<slot name="icon" />
Expand Down Expand Up @@ -700,6 +701,7 @@ export default {

emits: [
'click',
'dragstart',
'update:menuOpen',
],

Expand Down
Loading