Skip to content

Commit 420a55f

Browse files
authored
[DDW-172] Order exported wallets by ID (#1989)
1 parent 67022bd commit 420a55f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Changelog
55

66
### Fixes
77

8-
- Handle duplicate wallets in import process ([PR 1985](https://github.com/input-output-hk/daedalus/pull/1985))
8+
- Handle duplicate wallets in import process ([PR 1985](https://github.com/input-output-hk/daedalus/pull/1985), [PR 1989](https://github.com/input-output-hk/daedalus/pull/1989))
99
- Treat wallets with 100% syncing progress as synced wallets ([PR 1984](https://github.com/input-output-hk/daedalus/pull/1984))
1010
- Fixed `cardano-node` / `jormungandr` and `cardano-wallet` info on the "Diagnostics" screen ([PR 1980](https://github.com/input-output-hk/daedalus/pull/1980))
1111
- Persist "Blank screen fix" / "--safe-mode" flag between Daedalus restarts ([PR 1979](https://github.com/input-output-hk/daedalus/pull/1979))

source/renderer/app/stores/WalletMigrationStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export default class WalletMigrationStore extends Store {
205205
: WalletImportStatuses.UNSTARTED;
206206
return { ...wallet, hasName, import: { status, error: null } };
207207
}),
208-
['hasName', 'name', 'id', 'is_passphrase_empty'],
208+
['hasName', 'id', 'name', 'is_passphrase_empty'],
209209
['desc', 'asc', 'asc', 'asc']
210210
);
211211

0 commit comments

Comments
 (0)