@let hideVaultFilters = hideVaultFilter$ | async;
@if (!hideVaultFilters) {
@if (showAddAccessToggle() && activeFilter().selectedCollectionNode) {
{{ "all" | i18n }}
{{ "addAccess" | i18n }}
}
@if (activeFilter().isDeleted) {
{{ trashCleanupWarning }}
}
@if (filter) {
}
@let showCollectionAccessRestricted = showCollectionAccessRestricted$ | async;
@if (!refreshing && (isEmpty$ | async)) {
@if (!showCollectionAccessRestricted) {
{{ "noItemsInList" | i18n }}
@if (
filter &&
filter.type !== "trash" &&
filter.collectionId !== Unassigned &&
(!selectedCollection || selectedCollection.node?.canEditItems(organization))
) {
}
} @else {
}
}
@if (refreshing) {
{{ "loading" | i18n }}
}