rez_core 4.0.102 → 4.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "4.0.102",
3
+ "version": "4.0.103",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -163,7 +163,15 @@ export class LayoutPreferenceService extends EntityServiceImpl {
163
163
  }
164
164
 
165
165
  // Return only the resolved value list
166
- return resolvedWithCounts.map((item) => item.resolvedValue);
166
+ return resolvedWithCounts
167
+ .map((item) => item.resolvedValue)
168
+ .filter(
169
+ (val) =>
170
+ val !== null &&
171
+ val !== undefined &&
172
+ val !== '' &&
173
+ val.toString().trim() !== '',
174
+ );
167
175
  } catch (error) {
168
176
  this.logger.error(`getColumnValue ERROR: ${error.message}`, error.stack);
169
177
  return [];