Skip to content

Commit

Permalink
Revert "fix: missing default props warnings"
Browse files Browse the repository at this point in the history
This reverts commit 2cdcdc0.

Signed-off-by: Richard Steinmetz <[email protected]>
  • Loading branch information
st3iny committed Jun 25, 2024
1 parent 1d1f517 commit 3dd35fb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/views/EditSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
-->

<template>
<NcAppSidebar name=""
<NcAppSidebar :empty="isLoading || isError"
:force-menu="true"
@close="cancel">
<template v-if="isLoading">
Expand Down Expand Up @@ -206,7 +206,6 @@
class="app-sidebar-tab__buttons"
:can-create-recurrence-exception="canCreateRecurrenceException"
:is-new="isNew"
:is-read-only="isReadOnly"
:force-this-and-all-future="forceThisAndAllFuture"
@save-this-only="prepareAccessForAttachments(false)"
@save-this-and-all-future="prepareAccessForAttachments(true)" />
Expand All @@ -224,14 +223,12 @@
:calendar-object-instance="calendarObjectInstance"
:is-read-only="isReadOnly"
:is-shared-with-me="isSharedWithMe"
:show-header="false"
@update-dates="updateDates" />
</div>
<SaveButtons v-if="showSaveButtons"
class="app-sidebar-tab__buttons"
:can-create-recurrence-exception="canCreateRecurrenceException"
:is-new="isNew"
:is-read-only="isReadOnly"
:force-this-and-all-future="forceThisAndAllFuture"
@save-this-only="prepareAccessForAttachments(false)"
@save-this-and-all-future="prepareAccessForAttachments(true)" />
Expand All @@ -253,7 +250,6 @@
class="app-sidebar-tab__buttons"
:can-create-recurrence-exception="canCreateRecurrenceException"
:is-new="isNew"
:is-read-only="isReadOnly"
:force-this-and-all-future="forceThisAndAllFuture"
@save-this-only="prepareAccessForAttachments(false)"
@save-this-and-all-future="prepareAccessForAttachments(true)" />
Expand Down

0 comments on commit 3dd35fb

Please sign in to comment.