-
Notifications
You must be signed in to change notification settings - Fork 155
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
initial chain monitor, cluster chains panel #1405
Conversation
shell.openExternal(`${explorer}${hashPath}`) | ||
if (hash) { | ||
const hashPath = hash && `/tx/${hash}` | ||
shell.openExternal(`${explorer}${hashPath}`) |
Check notice
Code scanning / Electronegativity
Review the use of openExternal
shell.openExternal(`${explorer}${hashPath}`) | ||
} else if (account) { | ||
const accountPath = account && `/address/${account}` | ||
shell.openExternal(`${explorer}${accountPath}`) |
Check notice
Code scanning / Electronegativity
Review the use of openExternal
const accountPath = account && `/address/${account}` | ||
shell.openExternal(`${explorer}${accountPath}`) | ||
} else { | ||
shell.openExternal(`${explorer}`) |
Check notice
Code scanning / Electronegativity
Review the use of openExternal
92cc4a4
to
151e39a
Compare
No description provided.