File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -362,10 +362,10 @@ class MermaidNode {
362362 return "notstarted";
363363 }
364364 static createStartNode() {
365- return new MermaidNode("start", "Start", "notstarted ");
365+ return new MermaidNode("start", "Start", "default ");
366366 }
367367 static createFinishNode() {
368- return new MermaidNode("finish", "Finish", "notstarted ");
368+ return new MermaidNode("finish", "Finish", "default ");
369369 }
370370}
371371exports.MermaidNode = MermaidNode;
Original file line number Diff line number Diff line change 11import { GitHubIssue } from "./models" ;
22
3- export type MermaidNodeStatus = "notstarted" | "started" | "completed" ;
3+ export type MermaidNodeStatus = "default" | " notstarted" | "started" | "completed" ;
44
55export class MermaidNode {
66 constructor (
@@ -53,10 +53,10 @@ export class MermaidNode {
5353 }
5454
5555 public static createStartNode ( ) : MermaidNode {
56- return new MermaidNode ( "start" , "Start" , "notstarted " ) ;
56+ return new MermaidNode ( "start" , "Start" , "default " ) ;
5757 }
5858
5959 public static createFinishNode ( ) : MermaidNode {
60- return new MermaidNode ( "finish" , "Finish" , "notstarted " ) ;
60+ return new MermaidNode ( "finish" , "Finish" , "default " ) ;
6161 }
6262}
You can’t perform that action at this time.
0 commit comments