Fix paging limit for report
By defaulting it to zero if it's undefined or NaN.
This commit is contained in:
+1
-1
@@ -230,7 +230,7 @@ export default {
|
||||
this.options.datasources[this.currentConfigurableDatasourceIndex].paging = {}
|
||||
}
|
||||
|
||||
this.options.datasources[this.currentConfigurableDatasourceIndex].paging.limit = limit
|
||||
this.options.datasources[this.currentConfigurableDatasourceIndex].paging.limit = limit || 0
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user