Skip to content

Commit

Permalink
fix(ui): title prop is deprecated since @nextcloud/vue 7
Browse files Browse the repository at this point in the history
See nextcloud-libraries/nextcloud-vue#4052.

Signed-off-by: Max <max@nextcloud.com>
  • Loading branch information
max-nextcloud committed Nov 9, 2023
1 parent 4845068 commit cce1a58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Nav/CollectiveListItem.vue
@@ -1,6 +1,6 @@
<template>
<NcAppNavigationItem :key="collective.circleId"
:title="collective.name"
:name="collective.name"
:to="collectivePath(collective)"
:force-menu="true"
:force-display-actions="isMobile"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Nav/CollectivesTrash.vue
Expand Up @@ -15,7 +15,7 @@
<ul class="app-navigation__list">
<NcAppNavigationItem v-for="collective in trashCollectives"
:key="collective.circleId"
:title="collective.name"
:name="collective.name"
:force-menu="true"
:force-display-actions="isMobile"
class="collectives_trash_list_item">
Expand Down

0 comments on commit cce1a58

Please sign in to comment.