rez_core 1.0.85 → 1.0.86

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": "1.0.85",
3
+ "version": "1.0.86",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -87,18 +87,24 @@ export class EntityListService {
87
87
  query += whereClause.query;
88
88
  }
89
89
  query += ' GROUP BY ' + entityTable.tab_column;
90
+
90
91
  let tabs = await this.entityManager.query(query, whereClause.argumentList);
92
+
91
93
  let all = 0;
92
94
  for (const i in tabs) {
93
95
  let tab = tabs[i] as EntityTab;
96
+ tab.tab_value = String(tab.tab_value).toUpperCase(); // Capitalize tab_value
94
97
  all += parseInt(String(tab.tab_value_count));
95
98
  }
99
+
96
100
  let entityTab = new EntityTab();
97
101
  entityTab.tab_value = 'ALL';
98
102
  entityTab.tab_value_count = all;
99
103
  tabs.push(entityTab);
104
+
100
105
  return tabs.reverse();
101
106
  }
107
+
102
108
 
103
109
  private getQuery(source: string, groupByColumn: string | null) {
104
110
  if (groupByColumn) {