refactor: deprecation fixes

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/653/merge
Varun Patil 2023-11-09 23:56:00 -08:00
parent d58c492fac
commit 18c567bc0e
2 changed files with 4 additions and 3 deletions

View File

@ -12,8 +12,9 @@
autocomplete="off" autocomplete="off"
type="search" type="search"
name="search" name="search"
:aria-label="t('memories', 'Search for collaborators')"
aria-autocomplete="list" 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}`" :aria-controls="`manage-collaborators__form__selection-${randomId} manage-collaborators__form__list-${randomId}`"
:placeholder="t('memories', 'Search people or groups')" :placeholder="t('memories', 'Search people or groups')"
@input="searchCollaborators" @input="searchCollaborators"

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="top-matter"> <div class="top-matter">
<NcBreadcrumbs> <NcBreadcrumbs>
<NcBreadcrumb :title="rootFolderName" :to="getRoute([])"> <NcBreadcrumb :name="rootFolderName" :to="getRoute([])">
<template #icon> <template #icon>
<template v-if="routeIsPublic"> <template v-if="routeIsPublic">
<ShareIcon :size="20" /> <ShareIcon :size="20" />
@ -12,7 +12,7 @@
</template> </template>
</template> </template>
</NcBreadcrumb> </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> </NcBreadcrumbs>
<div class="right-actions"> <div class="right-actions">