Skip to content

Commit d74b1e7

Browse files
committed
change patternState key from status to state per discussion with dave
1 parent 9a33208 commit d74b1e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/lib/pattern_assembler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ var pattern_assembler = function () {
146146
currentPattern.patternDesc = markdownObject.markdown;
147147

148148
//consider looping through all keys eventually. would need to blacklist some properties and whitelist others
149-
if (markdownObject.status) {
150-
currentPattern.patternState = markdownObject.status;
149+
if (markdownObject.state) {
150+
currentPattern.patternState = markdownObject.state;
151151
}
152152
if (markdownObject.order) {
153153
currentPattern.order = markdownObject.order;

0 commit comments

Comments
 (0)