rez_core 2.2.89 → 2.2.90

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": "2.2.89",
3
+ "version": "2.2.90",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -30,7 +30,7 @@ export class TaskRepository {
30
30
  if (!action?.length) return;
31
31
 
32
32
  const todoListMasterItemId = await this.dataSource.query(
33
- `SELECT id FROM cr_list_master_items WHERE code = 'todo' and organization_id = ? and listtype = 'TKST' LIMIT 1;`,
33
+ `SELECT id FROM cr_list_master_items WHERE code = 'in_progress' and organization_id = ? and listtype = 'TKST' LIMIT 1;`,
34
34
  [loggedInUser.organization_id],
35
35
  );
36
36
 
@@ -1,5 +0,0 @@
1
- {
2
- "recommendations": [
3
- "dbaeumer.vscode-eslint"
4
- ]
5
- }