Skip to content

Commit

Permalink
refactor: deprecation fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <radialapps@gmail.com>
  • Loading branch information
pulsejet committed Nov 10, 2023
1 parent d58c492 commit 18c567b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/modal/AlbumCollaborators.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
autocomplete="off"
type="search"
name="search"
:aria-label="t('memories', 'Search for collaborators')"
aria-autocomplete="list"
:label="t('memories', 'Search for collaborators')"
:aria-label="t('memories', 'Search for collaborators')"
:aria-controls="`manage-collaborators__form__selection-${randomId} manage-collaborators__form__list-${randomId}`"
:placeholder="t('memories', 'Search people or groups')"
@input="searchCollaborators"
Expand Down
4 changes: 2 additions & 2 deletions src/components/top-matter/FolderTopMatter.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="top-matter">
<NcBreadcrumbs>
<NcBreadcrumb :title="rootFolderName" :to="getRoute([])">
<NcBreadcrumb :name="rootFolderName" :to="getRoute([])">
<template #icon>
<template v-if="routeIsPublic">
<ShareIcon :size="20" />
Expand All @@ -12,7 +12,7 @@
</template>
</template>
</NcBreadcrumb>
<NcBreadcrumb v-for="folder in list" :key="folder.idx" :title="folder.text" :to="getRoute(folder.path)" />
<NcBreadcrumb v-for="folder in list" :key="folder.idx" :name="folder.text" :to="getRoute(folder.path)" />
</NcBreadcrumbs>

<div class="right-actions">
Expand Down

0 comments on commit 18c567b

Please sign in to comment.