Fixes: http://tracker.ceph.com/issues/38583
Signed-off-by: Patrick Nawracay <pnawracay@suse.com>
(cherry picked from commit
ee988b90b84a484811b3351ff9eee242ae5b2ebd)
Conflicts:
- src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.ts
Modified the file to keep changes to relevant to this version.
if (!_.isUndefined(c.pipe)) {
cellValue = c.pipe.transform(cellValue);
}
- if (_.isUndefined(cellValue)) {
- return;
+ if (_.isUndefined(cellValue) || _.isNull(cellValue)) {
+ return false;
}
if (_.isArray(cellValue)) {
cellValue = cellValue.join(' ');