Fix paging limit for report

By defaulting it to zero if it's undefined or NaN.
This commit is contained in:
Vivek Patel
2022-12-02 18:07:45 +05:30
parent 035a38f3df
commit c1e324f4f6
@@ -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
}
},
},