rjaros / kvision

Object oriented web framework for Kotlin/JS
https://kvision.io
MIT License
1.2k stars 66 forks source link

ResizeObserver loop completed with undelivered notifications. #500

Closed chavu closed 7 months ago

chavu commented 7 months ago

How do I get rid of this error message on tablutor table which only shows on my smaller laptop screen but not on my larger second screen

Uncaught runtime errors:
ERROR
ResizeObserver loop completed with undelivered notifications.
    at handleError (webpack-internal:///../../node_modules/webpack-dev-server/client/overlay.js:252:58)
    at eval (webpack-internal:///../../node_modules/webpack-dev-server/client/overlay.js:271:7)
rjaros commented 7 months ago

If you want to get rid of overlay error message from webpack, you can add this to your webpack.config.d/webpack.js:

if (config.devServer) {
    config.devServer.client = {
        overlay: false
    };
}

The root cause of the message is probably some bug in the tabulator library (there are some issues opened regarding ResizeObserver), but I'm not sure we can do anything about this in KVision.

chavu commented 7 months ago

Thank you. This worked.