Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Serve committed Nov 23, 2017
1 parent 921f9d7 commit 0f619d2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions models/mi5-hasState.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const state = {
operationalState: {
type: 'Variable',
dataType: 'String',
initValue: 'Idle'
initValue: 'Aborted'
},
stateTransition: {
type: 'Folder',
Expand Down Expand Up @@ -80,10 +80,10 @@ const clusters ={

let StateTransitions = {
Idle: {
start: "Starting"
start: "Starting"
},
Starting: {
done: "Running"
done: "Running"
},
Running: {
pause: "Pausing",
Expand Down Expand Up @@ -114,29 +114,29 @@ let StateTransitions = {
done: "Aborted"
},
Aborted: {
clear: "Clearing",
reset: "Resetting"
clear: "Clearing",
reset: "Resetting"
},
Stopping: {
done: "Stopped"
done: "Stopped"
},
Stopped: {
reset: "Resetting"
reset: "Resetting"
},
Holding: {
done: "Held"
done: "Held"
},
Held: {
unhold: "Unholding"
unhold: "Unholding"
},
Unholding: {
done: "Running"
done: "Running"
},
Clearing: {
done: "Stopped"
done: "Stopped"
},
Resetting: {
done: "Idle"
done: "Idle"
}
};

Expand Down

0 comments on commit 0f619d2

Please sign in to comment.