File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -362,10 +362,10 @@ class MermaidNode {
362
362
return "notstarted";
363
363
}
364
364
static createStartNode() {
365
- return new MermaidNode("start", "Start", "notstarted ");
365
+ return new MermaidNode("start", "Start", "default ");
366
366
}
367
367
static createFinishNode() {
368
- return new MermaidNode("finish", "Finish", "notstarted ");
368
+ return new MermaidNode("finish", "Finish", "default ");
369
369
}
370
370
}
371
371
exports.MermaidNode = MermaidNode;
Original file line number Diff line number Diff line change 1
1
import { GitHubIssue } from "./models" ;
2
2
3
- export type MermaidNodeStatus = "notstarted" | "started" | "completed" ;
3
+ export type MermaidNodeStatus = "default" | " notstarted" | "started" | "completed" ;
4
4
5
5
export class MermaidNode {
6
6
constructor (
@@ -53,10 +53,10 @@ export class MermaidNode {
53
53
}
54
54
55
55
public static createStartNode ( ) : MermaidNode {
56
- return new MermaidNode ( "start" , "Start" , "notstarted " ) ;
56
+ return new MermaidNode ( "start" , "Start" , "default " ) ;
57
57
}
58
58
59
59
public static createFinishNode ( ) : MermaidNode {
60
- return new MermaidNode ( "finish" , "Finish" , "notstarted " ) ;
60
+ return new MermaidNode ( "finish" , "Finish" , "default " ) ;
61
61
}
62
62
}
You can’t perform that action at this time.
0 commit comments