Márk Magyar
Márk Magyar
Just fyi, you can do this: ```js const grid = new Grid({ // ... }).render(wrapper); const limitRecords = document.querySelector("#limit-records"); limitRecords?.addEventListener('change', () => { grid?.updateConfig({ pagination: { limit: parseInt(limitRecords.value) } }).forceRender();...
Thanks a lot, this solved the integration issue on my self-hosted instance. Honestly, I would've never figured it out by myself.
Which version of the bot you're using? The exception reports ln. 288 in `stockfish_bot.py`, but the whole file is just 268 lines long.
I'll look into this today, I think I can fix this issue. I'll keep you updated.
Opened a PR to solve the Threefold Repetition issue: https://github.com/PanagiotisIatrou/chess-auto-bot/pull/18 Let me know when you can update us about the logs related to the bot stopping.
> the threefold problem is solved, im happy with it. About the bug, i havent got it today so i dont know yet but i will post once i see...
@gergo187 the slowness has been fixed in https://github.com/PanagiotisIatrou/chess-auto-bot/pull/16, currently waiting for accepting and merging. It probably fixes the illegal moves as well.
We have the same issue, we can also confirm that this bug got introduced in 3.49.1, the previous version didn't have this issue.
+1, extremely laggy scrolling on Chromium-based browsers, but it seems like there is no issue at all on Firefox-based ones. I can also confirm that putting the `contain-paint` and `will-change-transform`...
Please don't forget adding the proper types in your method definitions (return and parameter).