Fix paging limit for report
By defaulting it to zero if it's undefined or NaN.
This commit is contained in:
parent
82d8a304b8
commit
73b85a0305
@ -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
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user