mirror of
https://github.com/bitwarden/android.git
synced 2026-06-20 12:38:11 -05:00
Compare commits
2 Commits
sync-min-s
...
temp-test
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9beb65c4b0 | ||
|
|
58f4983790 |
4
.github/release.yml
vendored
4
.github/release.yml
vendored
@@ -26,8 +26,10 @@ changelog:
|
|||||||
- t:ci
|
- t:ci
|
||||||
- t:docs
|
- t:docs
|
||||||
- t:misc
|
- t:misc
|
||||||
- '*'
|
|
||||||
- title: '📦 Dependency Updates'
|
- title: '📦 Dependency Updates'
|
||||||
labels:
|
labels:
|
||||||
- dependencies
|
- dependencies
|
||||||
- t:deps
|
- t:deps
|
||||||
|
- title: '🎨 Other'
|
||||||
|
labels:
|
||||||
|
- '*'
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ fun VaultItemListingContent(
|
|||||||
|
|
||||||
itemsIndexed(
|
itemsIndexed(
|
||||||
items = state.displayCollectionList,
|
items = state.displayCollectionList,
|
||||||
key = { _, collection -> collection.id },
|
key = { _, collection -> "collection_${collection.id}" },
|
||||||
) { index, collection ->
|
) { index, collection ->
|
||||||
BitwardenGroupItem(
|
BitwardenGroupItem(
|
||||||
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_collections),
|
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_collections),
|
||||||
@@ -195,7 +195,7 @@ fun VaultItemListingContent(
|
|||||||
|
|
||||||
itemsIndexed(
|
itemsIndexed(
|
||||||
items = state.displayFolderList,
|
items = state.displayFolderList,
|
||||||
key = { _, folder -> folder.id },
|
key = { _, folder -> "folder_${folder.id}" },
|
||||||
) { index, folder ->
|
) { index, folder ->
|
||||||
BitwardenGroupItem(
|
BitwardenGroupItem(
|
||||||
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_folder),
|
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_folder),
|
||||||
@@ -229,7 +229,7 @@ fun VaultItemListingContent(
|
|||||||
}
|
}
|
||||||
itemsIndexed(
|
itemsIndexed(
|
||||||
items = state.displayItemList,
|
items = state.displayItemList,
|
||||||
key = { _, item -> item.id },
|
key = { _, item -> "item_${item.id}" },
|
||||||
) { index, it ->
|
) { index, it ->
|
||||||
BitwardenListItem(
|
BitwardenListItem(
|
||||||
startIcon = it.iconData,
|
startIcon = it.iconData,
|
||||||
|
|||||||
@@ -142,7 +142,7 @@ fun VaultContent(
|
|||||||
|
|
||||||
itemsIndexed(
|
itemsIndexed(
|
||||||
items = state.favoriteItems,
|
items = state.favoriteItems,
|
||||||
key = { _, favorite -> favorite.id },
|
key = { _, favorite -> "favorite_${favorite.id}" },
|
||||||
) { index, favoriteItem ->
|
) { index, favoriteItem ->
|
||||||
VaultEntryListItem(
|
VaultEntryListItem(
|
||||||
startIcon = favoriteItem.startIcon,
|
startIcon = favoriteItem.startIcon,
|
||||||
@@ -307,7 +307,7 @@ fun VaultContent(
|
|||||||
|
|
||||||
itemsIndexed(
|
itemsIndexed(
|
||||||
items = state.folderItems,
|
items = state.folderItems,
|
||||||
key = { _, folder -> folder.id ?: "no_folder_group" },
|
key = { _, folder -> "folder_${folder.id}" },
|
||||||
) { index, folder ->
|
) { index, folder ->
|
||||||
BitwardenGroupItem(
|
BitwardenGroupItem(
|
||||||
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_folder),
|
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_folder),
|
||||||
@@ -344,7 +344,7 @@ fun VaultContent(
|
|||||||
}
|
}
|
||||||
itemsIndexed(
|
itemsIndexed(
|
||||||
items = state.noFolderItems,
|
items = state.noFolderItems,
|
||||||
key = { _, noFolderItem -> noFolderItem.id },
|
key = { _, noFolderItem -> "no_folder_${noFolderItem.id}" },
|
||||||
) { index, noFolderItem ->
|
) { index, noFolderItem ->
|
||||||
VaultEntryListItem(
|
VaultEntryListItem(
|
||||||
startIcon = noFolderItem.startIcon,
|
startIcon = noFolderItem.startIcon,
|
||||||
@@ -400,7 +400,7 @@ fun VaultContent(
|
|||||||
|
|
||||||
itemsIndexed(
|
itemsIndexed(
|
||||||
items = state.collectionItems,
|
items = state.collectionItems,
|
||||||
key = { _, collection -> collection.id },
|
key = { _, collection -> "collection_${collection.id}" },
|
||||||
) { index, collection ->
|
) { index, collection ->
|
||||||
BitwardenGroupItem(
|
BitwardenGroupItem(
|
||||||
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_collections),
|
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_collections),
|
||||||
|
|||||||
Reference in New Issue
Block a user