Skip to content

Commit 7e355d8

Browse files
authored
Merge pull request #6594 from nextcloud/feat/editor/simple-invitees
feat(editor): allow adding attendees in simple editor
2 parents 09a1693 + 7953d6a commit 7e355d8

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/components/Editor/Invitees/InviteesList.vue

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-->
55

66
<template>
7-
<div v-if="!hideIfEmpty || !isListEmpty" class="invitees-list">
7+
<div class="invitees-list">
88
<div v-if="showHeader" class="invitees-list__header">
99
<AccountMultipleIcon :size="20" />
1010
<b>{{ t('calendar', 'Attendees') }}</b>
@@ -122,10 +122,6 @@ export default {
122122
type: Boolean,
123123
required: true,
124124
},
125-
hideIfEmpty: {
126-
type: Boolean,
127-
default: false,
128-
},
129125
hideButtons: {
130126
type: Boolean,
131127
default: false,

src/views/EditSimple.vue

-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@
122122
@update:value="updateDescription" />
123123

124124
<InviteesList class="event-popover__invitees"
125-
:hide-if-empty="true"
126125
:hide-buttons="true"
127126
:hide-errors="true"
128127
:show-header="true"

0 commit comments

Comments
 (0)