fix type conversion error in gridview tag

This commit is contained in:
Dany LE 2022-02-23 14:33:21 +01:00
parent 6af1260918
commit 079af3b0ce
2 changed files with 8015 additions and 8015 deletions

16028
d.ts/antos.d.ts vendored

File diff suppressed because it is too large Load Diff

View File

@ -618,7 +618,7 @@ namespace OS {
};
grid.onrowselect = (e) => {
this.fileselect(
$(e.data.item).children()[0]
($(e.data.item).children()[0] as GridCellPrototype)
.data as API.FileInfoType
);
};