mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-11-08 05:58:22 +01:00
fix type conversion error in gridview tag
This commit is contained in:
parent
6af1260918
commit
079af3b0ce
16028
d.ts/antos.d.ts
vendored
16028
d.ts/antos.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -618,7 +618,7 @@ namespace OS {
|
|||||||
};
|
};
|
||||||
grid.onrowselect = (e) => {
|
grid.onrowselect = (e) => {
|
||||||
this.fileselect(
|
this.fileselect(
|
||||||
$(e.data.item).children()[0]
|
($(e.data.item).children()[0] as GridCellPrototype)
|
||||||
.data as API.FileInfoType
|
.data as API.FileInfoType
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user