Skip to content

Commit

Permalink
[DDW-460] Fix mixed up Node states
Browse files Browse the repository at this point in the history
  • Loading branch information
thedanheller committed Mar 15, 2019
1 parent 6eac410 commit a26f827
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/renderer/app/components/loading/StatusIcons.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ const STATUS_CLASSNAMES: Object = {
}; };


const MESSAGES = { const MESSAGES = {
[CardanoNodeStates.STARTING]: messages.nodeIsRunning, [CardanoNodeStates.RUNNING]: messages.nodeIsRunning,
[CardanoNodeStates.RUNNING]: messages.nodeIsStarting, [CardanoNodeStates.STARTING]: messages.nodeIsStarting,
[CardanoNodeStates.EXITING]: messages.nodeIsExiting, [CardanoNodeStates.EXITING]: messages.nodeIsExiting,
[CardanoNodeStates.STOPPING]: messages.nodeIsStopping, [CardanoNodeStates.STOPPING]: messages.nodeIsStopping,
[CardanoNodeStates.STOPPED]: messages.nodeHasStopped, [CardanoNodeStates.STOPPED]: messages.nodeHasStopped,
Expand Down

0 comments on commit a26f827

Please sign in to comment.