Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: npm run lint:fix #4086

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
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
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 Expand Up @@ -136,8 +136,8 @@

methods: {
/**
* @param groups

Check warning on line 139 in src/components/AppNavigation/GroupNavigationItem.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Missing JSDoc @param "groups" description
* @param groupId

Check warning on line 140 in src/components/AppNavigation/GroupNavigationItem.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Missing JSDoc @param "groupId" description
*/
isInGroup(groups, groupId) {
return groups.includes(groupId)
Expand Down Expand Up @@ -235,7 +235,7 @@
* Open mailto: for contacts in a group
*
* @param {object} group of contacts to be emailed
* @param {string} mode

Check warning on line 238 in src/components/AppNavigation/GroupNavigationItem.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Missing JSDoc @param "mode" description
*/
emailGroup(group, mode = 'to') {
const emails = []
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
Loading