rez_core 5.0.236 → 5.0.237

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": "5.0.236",
3
+ "version": "5.0.237",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -147,23 +147,6 @@ export class ResolverService {
147
147
  uploadData = resolvedEntityData[field];
148
148
  }
149
149
 
150
- // uploadData resolve review_status
151
-
152
- const options = await this.listMasterService.getDropdownOptions(
153
- 'RSTS',
154
- {},
155
- undefined,
156
- loggedInUser,
157
- );
158
-
159
- if (uploadData && uploadData.review_status) {
160
- const statusItem = options.find(
161
- (opt) => opt.value == uploadData.review_status,
162
- );
163
- uploadData.review_status =
164
- statusItem?.label || uploadData.review_status;
165
- }
166
-
167
150
  resolvedEntityData[field] = uploadData;
168
151
  }
169
152
  }