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
{{ message }}
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
When wrapping the DataGrid and binding the actions input to a local variable in the wrapper we get an exception if the wrapper's input is not set to something.
This will execute the DataGrid's actions setter with an undefined value. The setter then attempts to iterate the undefined value throwing an exception. Current workaround is to initialize the wrapper's actions variable to [] so that it can be iterated.
When wrapping the DataGrid and binding the actions input to a local variable in the wrapper we get an exception if the wrapper's input is not set to something.
For example:
This will execute the DataGrid's actions setter with an undefined value. The setter then attempts to iterate the undefined value throwing an exception. Current workaround is to initialize the wrapper's actions variable to [] so that it can be iterated.
https://github.com/vmware/vmware-cloud-director-ui-components/blob/faf1a098a0875303835749cce62250c2a1c16c23/projects/components/src/datagrid/datagrid.component.ts#L358
The text was updated successfully, but these errors were encountered: