Bugzilla – Attachment 190938 Details for
Bug 40816
Upgrade DataTables from 2.1.8 to >2.3.4
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40816: Ignore 'ResizeObserver loop limit exceeded'
d34bd71.patch (text/plain), 1.05 KB, created by
Jonathan Druart
on 2026-01-06 13:58:18 UTC
(
hide
)
Description:
Bug 40816: Ignore 'ResizeObserver loop limit exceeded'
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2026-01-06 13:58:18 UTC
Size:
1.05 KB
patch
obsolete
>From d34bd7115a6ca236d75ef32c2a793d3d8d025485 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 6 Jan 2026 14:56:20 +0100 >Subject: [PATCH] Bug 40816: Ignore 'ResizeObserver loop limit exceeded' > >I have NO idea how to fix this error. I don't see it on the Koha UI, >neither using Cypress UI. > >It seems safe for now to ignore this error (The internet says so). >--- > t/cypress/support/e2e.js | 7 +++++++ > 1 file changed, 7 insertions(+) > >diff --git a/t/cypress/support/e2e.js b/t/cypress/support/e2e.js >index cd200179b01..527da41550f 100644 >--- a/t/cypress/support/e2e.js >+++ b/t/cypress/support/e2e.js >@@ -50,6 +50,13 @@ Cypress.on("window:before:load", win => { > }; > }); > >+Cypress.on("uncaught:exception", err => { >+ // Ignoring 'ResizeObserver loop limit exceeded' message from DataTables >+ if (err.message.match(/ResizeObserver loop limit exceeded/)) { >+ return false; >+ } >+}); >+ > function get_fallback_login_value(param) { > var env_var = param == "username" ? "KOHA_USER" : "KOHA_PASS"; > >-- >2.43.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 40816
:
186448
|
186449
|
186450
|
186451
|
188979
|
188991
|
188992
|
188993
|
188994
|
189599
|
189600
|
189601
|
189605
|
189606
|
190614
|
190615
|
190937
| 190938