Skip to content

Commit

Permalink
feat: add organizer selection
Browse files Browse the repository at this point in the history
Signed-off-by: SebastianKrupinski <[email protected]>
  • Loading branch information
SebastianKrupinski committed Aug 22, 2024
1 parent d23b39e commit 718694e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Editor/Invitees/OrganizerListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@
<NcActions v-if="!isReadOnly && isSharedWithMe">
<NcActionButton v-for="person in organizerSelection" v-show="!selectedOrganizer(person.address)"

Check failure on line 23 in src/components/Editor/Invitees/OrganizerListItem.vue

View workflow job for this annotation

GitHub Actions / NPM lint

'v-show' should be on a new line
:key="person.address"
:closeAfterClick = "true"
@click="changeOrganizer(person)">
<template #icon>
<Crown :size="20" />
</template>
{{ $t('calendar', 'Promote {label} to Organizer', {label: person.label}) }}
{{ $t('calendar', 'Make {label} the organizer', {label: person.label}) }}
</NcActionButton>
</NcActions>
</div>
Expand Down

0 comments on commit 718694e

Please sign in to comment.