diff --git a/CHANGELOG.md b/CHANGELOG.md index d6fac72a1..232d7b663 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -91,6 +91,8 @@ [#1843](https://github.com/nextcloud/cookbook/pull/1843) @christianlupus - Update helper dependency for DB testing [#1873](https://github.com/nextcloud/cookbook/pull/1873) @dependabot +- Use non-deprecated prop name for navigation items + [#1893](https://github.com/nextcloud/cookbook/pull/1893) @christianlupus ## 0.10.2 - 2023-03-24 diff --git a/src/components/AppNavi.vue b/src/components/AppNavi.vue index 19c30368c..f64d0505b 100644 --- a/src/components/AppNavi.vue +++ b/src/components/AppNavi.vue @@ -22,7 +22,7 @@ @@ -34,7 +34,7 @@ @@ -54,7 +54,7 @@ v-for="(cat, idx) in categories" :key="cat + idx" :ref="'app-navi-cat-' + idx" - :title="cat.name" + :name="cat.name" :icon="'icon-category-files'" :to="'/category/' + cat.name" :editable="true"