File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
code/components/actions/mask-tool Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class MaskToolAction extends WeaveAction {
17
17
protected maskId : string | null ;
18
18
protected tempLineId : string | null ;
19
19
protected tempLine ! : Konva . Line | null ;
20
- protected mask ! : Konva . Line | null ;
20
+ protected mask ! : Konva . Line | undefined ;
21
21
protected container : Konva . Layer | Konva . Group | undefined ;
22
22
protected measureContainer : Konva . Layer | Konva . Group | undefined ;
23
23
protected maskTransformer ! : Konva . Transformer | undefined ;
@@ -317,7 +317,7 @@ export class MaskToolAction extends WeaveAction {
317
317
this . tempPoint = undefined ;
318
318
this . tempNextPoint = undefined ;
319
319
this . maskId = null ;
320
- this . mask = null ;
320
+ this . mask = undefined ;
321
321
this . tempLineId = null ;
322
322
this . container = undefined ;
323
323
this . clickPoint = null ;
You can’t perform that action at this time.
0 commit comments