File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
const SUITABILITY_SCORE_HIGH = 100 ,
2
- SUITABILITY_SCORE_AVERGE = 50 ,
2
+ SUITABILITY_SCORE_AVERAGE = 50 ,
3
3
SUITABILITY_SCORE_LOW = 25 ;
4
4
5
5
export default class CustomContextPad {
@@ -74,8 +74,8 @@ export default class CustomContextPad {
74
74
className : 'bpmn-icon-task yellow' ,
75
75
title : translate ( 'Append Task with average suitability score' ) ,
76
76
action : {
77
- click : appendServiceTask ( SUITABILITY_SCORE_AVERGE ) ,
78
- dragstart : appendServiceTaskStart ( SUITABILITY_SCORE_AVERGE )
77
+ click : appendServiceTask ( SUITABILITY_SCORE_AVERAGE ) ,
78
+ dragstart : appendServiceTaskStart ( SUITABILITY_SCORE_AVERAGE )
79
79
}
80
80
} ,
81
81
'append.high-task' : {
Original file line number Diff line number Diff line change 1
1
const SUITABILITY_SCORE_HIGH = 100 ,
2
- SUITABILITY_SCORE_AVERGE = 50 ,
2
+ SUITABILITY_SCORE_AVERAGE = 50 ,
3
3
SUITABILITY_SCORE_LOW = 25 ;
4
4
5
5
export default class CustomPalette {
@@ -50,8 +50,8 @@ export default class CustomPalette {
50
50
className : 'bpmn-icon-task yellow' ,
51
51
title : translate ( 'Create Task with average suitability score' ) ,
52
52
action : {
53
- dragstart : createTask ( SUITABILITY_SCORE_AVERGE ) ,
54
- click : createTask ( SUITABILITY_SCORE_AVERGE )
53
+ dragstart : createTask ( SUITABILITY_SCORE_AVERAGE ) ,
54
+ click : createTask ( SUITABILITY_SCORE_AVERAGE )
55
55
}
56
56
} ,
57
57
'create.high-task' : {
You can’t perform that action at this time.
0 commit comments