Skip to content

Commit f0c9eaa

Browse files
authored
Merge pull request #7817 from nextcloud-libraries/fix/NcListItem-render-actions-lazy
fix(NcListItem): do not mount NcAction until necessary
2 parents 58175c1 + 57dd7bc commit f0c9eaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/NcListItem/NcListItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ The `actions-icon` slot can be used to pass icon to the inner NcActions componen
513513

514514
<!-- Actions -->
515515
<div
516-
v-show="forceDisplayActions || displayActionsOnHoverFocus"
516+
v-if="forceDisplayActions || displayActionsOnHoverFocus"
517517
class="list-item-content__actions"
518518
@focusout="handleBlur">
519519
<NcActions

0 commit comments

Comments
 (0)