Hello,
I have found myself using $wire.$get('someObject.nested.property') and when setting someObject to null I had a javascript error because the helper only handle undefined.
Also I could have worked around this issue if there was a $set API counterpart for deleting nested properties such as $wire.$delete (will set to undefined) but since it is not available, it would help me here.
I know I am not providing any repro nor tests but hopefully this is a very simple and not controversial change that does not require spending much time on it 🤞
Hello, I have found myself using
$wire.$get('someObject.nested.property')
and when settingsomeObject
tonull
I had a javascript error because the helper only handleundefined
.Also I could have worked around this issue if there was a $set API counterpart for deleting nested properties such as
$wire.$delete
(will set to undefined) but since it is not available, it would help me here.I know I am not providing any repro nor tests but hopefully this is a very simple and not controversial change that does not require spending much time on it 🤞
Thanks