Skip to content

Commit

Permalink
Merge pull request #5729 from nextcloud/fix/card-details-edit-title
Browse files Browse the repository at this point in the history
fix: Adapt NcAppSidebar props to new version
  • Loading branch information
juliusknorr authored Apr 18, 2024
2 parents dbe366d + 23291fc commit 7c756f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/card/CardSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<NcAppSidebar v-if="currentBoard && currentCard"
:active="tabId"
:name="title"
:subtitle="subtitle"
:subtitle-tooltip="subtitleTooltip"
:title-editable="titleEditable"
@update:titleEditable="handleUpdateTitleEditable"
@update:title="handleUpdateTitle"
@submit-title="handleSubmitTitle"
:subname="subtitle"
:subtitle="subtitleTooltip"
:name-editable="titleEditable"
@update:nameEditable="handleUpdateTitleEditable"
@update:name="handleUpdateTitle"
@submit-name="handleSubmitTitle"
@close="closeSidebar">
<template #secondary-actions>
<NcActionButton v-if="cardDetailsInModal && isFullApp" icon="icon-menu-sidebar" @click.stop="closeModal()">
Expand Down

0 comments on commit 7c756f5

Please sign in to comment.