Antoine CAILLY

Results 19 comments of Antoine CAILLY

found another workaround here using WebGL : https://stackoverflow.com/a/60553965

I almost missed the @nickkrein comment, using the `summary` prop gives us the filtered and sorted row array ```js summary={(currentData) => { onSortOrFilter(currentData) return null // or whatever you want...

Oh, that's right. I don't have pagination in my use case but thanks you for pointing that 🙏

I added an example repository that isolate this behavior: https://github.com/acailly/isomorphic-git-issue-1275.git

I found a difference between Windows and Linux on this line: https://github.com/isomorphic-git/isomorphic-git/blob/26f761e540709da7920db1288469cb9ed5be5c1c/src/api/status.js#L97 On Linux, `compareStats` return true On Windows, it returns false because `ino` attributes are differents because `e.ino` is...

Zero value for `ino` is assignated here : https://github.com/isomorphic-git/isomorphic-git/blob/f2e38053733f4c8ca4b7784d5c2a56addcf36bf4/src/models/GitIndex.js#L80

apparently, inode value really is `0` in the git index so it seems to be an issue related to native git on windows 😕

new breakthrough, I looked at the code executed if compareStat returns false there is a comparison between index entry oid and computed workdir oid: https://github.com/isomorphic-git/isomorphic-git/blob/26f761e540709da7920db1288469cb9ed5be5c1c/src/api/status.js#L101 in Linux, both are the...

I confirm this is a crlf issue, if I change `GitObject.wrap` implementation from https://github.com/isomorphic-git/isomorphic-git/blob/f2e38053733f4c8ca4b7784d5c2a56addcf36bf4/src/models/GitObject.js#L4 to ```javascript class GitObject { static wrap({ type, object }) { // This is a quick...

For my specific use case, it is ok if line break are always LF only in this specific repo, so I found a workaround consisting in adding a `.gitattributes` file...