This commit is contained in:
prawel 2024-08-27 13:13:57 +08:00 committed by GitHub
commit 510c2a9056
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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,