Skip to content

Commit

Permalink
Merge pull request #4086 from nextcloud/chore/lint-fix
Browse files Browse the repository at this point in the history
chore: `npm run lint:fix`
  • Loading branch information
st3iny authored Aug 15, 2024
2 parents 8647508 + a26fc84 commit 9932fbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/AppNavigation/GroupNavigationItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="group-drop-area"
<div v-if="!isEmpty"
class="group-drop-area"
data-testid="group-drop-area"
v-if="!isEmpty"
@drop="onDrop($event, group)"
@dragenter.prevent
@dragover="onDragOver($event)"
Expand Down
4 changes: 2 additions & 2 deletions src/components/AppNavigation/RootNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@
</template>
{{ createGroupError ? createGroupError : t('contacts', 'Create a new contact group') }}
</ActionText>
<ActionInput icon=""
v-show="isNewGroupMenuOpen"
<ActionInput v-show="isNewGroupMenuOpen"
icon=""
:placeholder="t('contacts','Contact group name')"
@submit.prevent.stop="createNewGroup" />
</template>
Expand Down

0 comments on commit 9932fbf

Please sign in to comment.