mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix broken action reference
This commit is contained in:
parent
9a8ede2210
commit
179d176dc1
@ -47,6 +47,7 @@ var actions = {
|
||||
unlockInProgress: unlockInProgress,
|
||||
// error handling
|
||||
displayWarning: displayWarning,
|
||||
showWarning: showWarning, // alias
|
||||
DISPLAY_WARNING: 'DISPLAY_WARNING',
|
||||
HIDE_WARNING: 'HIDE_WARNING',
|
||||
hideWarning: hideWarning,
|
||||
@ -507,6 +508,10 @@ function hideLoadingIndication () {
|
||||
}
|
||||
}
|
||||
|
||||
function showWarning (text) {
|
||||
return this.displayWarning(text)
|
||||
}
|
||||
|
||||
function displayWarning (text) {
|
||||
return {
|
||||
type: actions.DISPLAY_WARNING,
|
||||
|
Loading…
Reference in New Issue
Block a user