Skip to content

Commit 2291f11

Browse files
update service url (#526)
update service url
1 parent d6023d6 commit 2291f11

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

samples/grids/data-grid/binding-remote-data/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default class DataGridBindingRemoteData extends React.Component<any, any>
5151

5252
public initData() {
5353
const vds = new ODataVirtualDataSource();
54-
vds.baseUri = ("https://services.odata.org/V4/Northwind/Northwind.svc");
54+
vds.baseUri = ("https://services.odata.org/northwind/northwind.svc");
5555
vds.entitySet = ("Orders");
5656
this.virtualData = vds;
5757
}

samples/grids/grid/infinite-scroll/src/NwindService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DATA_URL: string =
2-
"https://services.odata.org/V4/Northwind/Northwind.svc/Products";
2+
"https://services.odata.org/northwind/northwind.svc/Products";
33

44
const cachedData = <any>[];
55
let prevRequestChunk: number = 0;

0 commit comments

Comments
 (0)