File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class IDS {
6
6
this . _ids = new Set ( ) ;
7
7
}
8
8
generateId ( ) {
9
- const id = 'xxxxxxxx ' . replace ( / [ x ] / g, ( c ) => {
9
+ const id = 'xxxxxxx ' . replace ( / [ x ] / g, ( c ) => {
10
10
const r = ( Math . random ( ) * 16 ) | 0 ;
11
11
const v = c === 'x' ? r : ( r & 0x3 ) | 0x8 ;
12
12
return v . toString ( 16 ) ;
Original file line number Diff line number Diff line change @@ -48,15 +48,15 @@ export function BoundaryEventFactory(lf: any): {
48
48
cx : x ,
49
49
cy : y ,
50
50
r,
51
- strokeDasharray : cancelActivity ? '5,5 ' : '' ,
51
+ strokeDasharray : cancelActivity ? '' : '5,5 ' ,
52
52
strokeWidth : 1.5 ,
53
53
} ) ,
54
54
h ( 'circle' , {
55
55
...style ,
56
56
cx : x ,
57
57
cy : y ,
58
58
r : r - 3 ,
59
- strokeDasharray : cancelActivity ? '5,5 ' : '' ,
59
+ strokeDasharray : cancelActivity ? '' : '5,5 ' ,
60
60
strokeWidth : 1.5 ,
61
61
} ) ,
62
62
i ,
@@ -82,7 +82,7 @@ export function BoundaryEventFactory(lf: any): {
82
82
83
83
data . properties = {
84
84
attachedToRef : '' ,
85
- cancelActivity : false ,
85
+ cancelActivity : true ,
86
86
...properties ,
87
87
...data . properties ,
88
88
} ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class IDS {
25
25
this . _ids = new Set ( ) ;
26
26
}
27
27
generateId ( ) {
28
- const id = 'xxxxxxxx ' . replace ( / [ x ] / g, ( c ) => {
28
+ const id = 'xxxxxxx ' . replace ( / [ x ] / g, ( c ) => {
29
29
const r = ( Math . random ( ) * 16 ) | 0 ;
30
30
const v = c === 'x' ? r : ( r & 0x3 ) | 0x8 ;
31
31
return v . toString ( 16 ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class IDS {
6
6
this . _ids = new Set ( ) ;
7
7
}
8
8
generateId ( ) {
9
- const id = 'xxxxxxxx ' . replace ( / [ x ] / g, ( c ) => {
9
+ const id = 'xxxxxxx ' . replace ( / [ x ] / g, ( c ) => {
10
10
const r = ( Math . random ( ) * 16 ) | 0 ;
11
11
const v = c === 'x' ? r : ( r & 0x3 ) | 0x8 ;
12
12
return v . toString ( 16 ) ;
You can’t perform that action at this time.
0 commit comments