File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
controllers/de/iteratec/osm/csi Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class CsiBenchmarkController extends ExceptionHandlerController {
53
53
}
54
54
55
55
String selectedCsiType = params. csiType == " visuallyComplete" ? ' csByWptVisuallyCompleteInPercent' : ' csByWptDocCompleteInPercent'
56
- List<JobGroup > allJobGroups = JobGroup . findAllByNameInList (cmd. jobGroups)
56
+ List<JobGroup > allJobGroups = JobGroup . findAllByIdInList (cmd. jobGroups)
57
57
58
58
CsiAggregationInterval interval = CsiAggregationInterval . findByIntervalInMinutes(CsiAggregationInterval . DAILY )
59
59
Original file line number Diff line number Diff line change 106
106
data: {
107
107
from: selectedTimeFrame[0].toISOString(),
108
108
to: selectedTimeFrame[1].toISOString(),
109
- selectedJobGroups : JSON.stringify($.map($("#folderSelectHtmlId option:selected"), function (e) {
110
- return $(e).text()
109
+ jobGroups : JSON.stringify($.map($("#folderSelectHtmlId option:selected"), function (e) {
110
+ return parseInt(e.value);
111
111
})),
112
112
csiType: $('input[name=csiTypeRadios]:checked').val()
113
113
},
You can’t perform that action at this time.
0 commit comments