datasource: do not send raw-range to server (#68601)

This commit is contained in:
Gábor Farkas 2023-05-29 15:34:09 +02:00 committed by GitHub
parent cb83861630
commit feb2e8d773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,7 +187,6 @@ class DataSourceWithBackend<
const body: any = { queries };
if (range) {
body.range = range;
body.from = range.from.valueOf().toString();
body.to = range.to.valueOf().toString();
}