Compare commits

...

2 Commits

Author SHA1 Message Date
Álison Fernandes
9beb65c4b0 [PM-31343] Fix dependencies listed under Maintenance by adding a new fallback section to release.yml (#6420)
(cherry picked from commit ca9ec45548)
2026-01-29 15:48:17 +00:00
David Perez
58f4983790 🍒 PM-31363: Fix crash caused by a duplicate ID (#6430) 2026-01-28 19:01:47 +00:00
3 changed files with 10 additions and 8 deletions

4
.github/release.yml vendored
View File

@@ -26,8 +26,10 @@ changelog:
- t:ci
- t:docs
- t:misc
- '*'
- title: '📦 Dependency Updates'
labels:
- dependencies
- t:deps
- title: '🎨 Other'
labels:
- '*'

View File

@@ -160,7 +160,7 @@ fun VaultItemListingContent(
itemsIndexed(
items = state.displayCollectionList,
key = { _, collection -> collection.id },
key = { _, collection -> "collection_${collection.id}" },
) { index, collection ->
BitwardenGroupItem(
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_collections),
@@ -195,7 +195,7 @@ fun VaultItemListingContent(
itemsIndexed(
items = state.displayFolderList,
key = { _, folder -> folder.id },
key = { _, folder -> "folder_${folder.id}" },
) { index, folder ->
BitwardenGroupItem(
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_folder),
@@ -229,7 +229,7 @@ fun VaultItemListingContent(
}
itemsIndexed(
items = state.displayItemList,
key = { _, item -> item.id },
key = { _, item -> "item_${item.id}" },
) { index, it ->
BitwardenListItem(
startIcon = it.iconData,

View File

@@ -142,7 +142,7 @@ fun VaultContent(
itemsIndexed(
items = state.favoriteItems,
key = { _, favorite -> favorite.id },
key = { _, favorite -> "favorite_${favorite.id}" },
) { index, favoriteItem ->
VaultEntryListItem(
startIcon = favoriteItem.startIcon,
@@ -307,7 +307,7 @@ fun VaultContent(
itemsIndexed(
items = state.folderItems,
key = { _, folder -> folder.id ?: "no_folder_group" },
key = { _, folder -> "folder_${folder.id}" },
) { index, folder ->
BitwardenGroupItem(
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_folder),
@@ -344,7 +344,7 @@ fun VaultContent(
}
itemsIndexed(
items = state.noFolderItems,
key = { _, noFolderItem -> noFolderItem.id },
key = { _, noFolderItem -> "no_folder_${noFolderItem.id}" },
) { index, noFolderItem ->
VaultEntryListItem(
startIcon = noFolderItem.startIcon,
@@ -400,7 +400,7 @@ fun VaultContent(
itemsIndexed(
items = state.collectionItems,
key = { _, collection -> collection.id },
key = { _, collection -> "collection_${collection.id}" },
) { index, collection ->
BitwardenGroupItem(
startIcon = IconData.Local(iconRes = BitwardenDrawable.ic_collections),