-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: set a primary key (account management) #8077
Conversation
…t-management-list-ui
…ress and disable the password input
packages/desktop/views/dashboard/account-management/AccountManagement.svelte
…nt-info packages/desktop/views/dashboard/account-management/AccountManagement.svelte
…nt-info packages/desktop/views/dashboard/account-management/AccountManagement.svelte
packages/desktop/views/dashboard/account-management/AccountManagement.svelte
…count-in-details-view
…w' and 'develop-iota2.0' of github.com:iotaledger/firefly into feat/update-logic-for-activate-account-in-details-view
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect!
…count-in-details-view
… into feat/set-a-primary-key
@@ -51,7 +51,7 @@ | |||
|
|||
const explorerUrl = getOfficialExplorerUrl($activeProfile?.network?.id) | |||
|
|||
$: isImplicitAccount = isImplicitAccountOutput(selectedOutput.output as CommonOutput) | |||
$: isImplicitAccount = isImplicitAccountOutput(selectedOutput?.output as CommonOutput) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the ?
, there will always be an output according to the SDK types
$: isImplicitAccount = isImplicitAccountOutput(selectedOutput?.output as CommonOutput) | |
$: isImplicitAccount = isImplicitAccountOutput(selectedOutput.output as CommonOutput) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐎
Summary
...
Changelog
Testing
Platforms
Instructions
...
Checklist