This commit is contained in:
prawel 2024-03-01 18:37:40 -07:00 committed by GitHub
commit acee3bcdc5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ struct StoreListView: View {
if store.secrets.isEmpty {
EmptyStoreView(store: store, activeSecret: $activeSecret)
} else {
ForEach(store.secrets) { secret in
ForEach(store.secrets.sorted(by: { $0.name < $1.name })) { secret in
SecretListItemView(
store: store,
secret: secret,