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 text was updated successfully, but these errors were encountered:
Rohitbels
changed the title
useSortable data prop is spread and used internally should use Object.assign
useSortable data prop is spreaded and hence only copies owned properties.
Mar 28, 2024
useSortable data prop is spread and used internally.
spread parameter leads to loss of properties from the prototype chain of an object.
Can we use Object.create?
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptors#creating_a_shallow_copy
The text was updated successfully, but these errors were encountered: