You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The culprit is the return statement in ColumnHeaderContainer.
On the v1.29.x branch, it looks like this:
return(<div{...headerProps}// <- This is where it crashes>
The problem is that headerProps contains a key prop which React doesn't seem to like. On the main branch, the issue is resolved by isolating key and setting it explicitly:
this warning was introduced in React v18.3 in preparation for React 19, but as spreading a key was an anti-pattern even before, we'll fix the issue with the linked PR in our v1 as well.
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
Our AnalyticalTable throws an error on init:
The culprit is the return statement in
ColumnHeaderContainer
.On the
v1.29.x
branch, it looks like this:The problem is that
headerProps
contains akey
prop which React doesn't seem to like. On themain
branch, the issue is resolved by isolatingkey
and setting it explicitly:Could we get a backport of this fix to v1?
Thank you very much in advance!
UI5 Web Components for React Version
1.29.14
UI5 Web Components Version
1.24.13
The text was updated successfully, but these errors were encountered: