Bugzilla – Attachment 193283 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'
Bug-40816-Ignore-ResizeObserver-loop-limit-exceede.patch (text/plain), 1.12 KB, created by
David Cook
on 2026-02-17 02:02:09 UTC
(
hide
)
Description:
Bug 40816: Ignore 'ResizeObserver loop limit exceeded'
Filename:
MIME Type:
Creator:
David Cook
Created:
2026-02-17 02:02:09 UTC
Size:
1.12 KB
patch
obsolete
>From 7e52c239e9bf391dff1306301b5d9da488f29b8e 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). > >Signed-off-by: David Cook <dcook@prosentient.com.au> >--- > 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 287616198fb..5eda9ee80c6 100644 >--- a/t/cypress/support/e2e.js >+++ b/t/cypress/support/e2e.js >@@ -68,6 +68,13 @@ Cypress.on("uncaught:exception", (err, runnable) => { > return true; > }); > >+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.39.5
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
|
193272
|
193273
|
193274
|
193275
|
193276
|
193277
|
193278
|
193279
|
193280
|
193281
|
193282
| 193283