Skip to content

Commit

Permalink
Merge pull request #4363 from nextcloud/backport/4356/stable7
Browse files Browse the repository at this point in the history
[stable7] fix(NcListItem) - define a single place for NcActions to render
  • Loading branch information
ShGKme committed Jul 24, 2023
2 parents 5755615 + f602ced commit 705ff26
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/NcListItem/NcListItem.vue
Expand Up @@ -267,7 +267,8 @@
</div>

<!-- Actions -->
<div v-show="displayActionsOnHoverFocus && !forceDisplayActions"
<div v-if="!forceDisplayActions"
v-show="displayActionsOnHoverFocus"
class="list-item-content__actions"
@click.prevent.stop="">
<NcActions ref="actions"
Expand All @@ -279,7 +280,7 @@
</div>
</div>
<!-- Actions -->
<div v-show="forceDisplayActions"
<div v-if="forceDisplayActions"
class="list-item-content__actions"
@click.prevent.stop="">
<NcActions ref="actions"
Expand Down

0 comments on commit 705ff26

Please sign in to comment.