Fix process definition api

This commit is contained in:
mauriziovitale84
2016-11-03 14:33:09 +00:00
parent d3f6824bde
commit a3b0f8c787
4 changed files with 47 additions and 7 deletions

View File

@@ -182,7 +182,7 @@ export class AnalyticsReportParametersComponent implements OnInit, OnChanges {
}
public convertNumber(value: string): number {
return parseInt(value, 10);
return value != null ? parseInt(value, 10) : 0;
}
convertFormValuesToReportParamQuery(values: any): ReportQuery {