I am getting an error when Operator '+' cannot be applied to types 'Number' and '1'
buildQuerySpec() {
return {
PageSize: this.paging.PageCount,
CurrentPage: this.paging.PageIndex + 1,
MaxSize: '',
Filters: this.filter,
OrderFields: [],
IsDescending: false
};
}
what is wrong with
CurrentPage: this.paging.PageIndex + 1,
pageIndex is number , no idea really.