rez_core 1.0.34 → 1.0.35
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
|
@@ -155,7 +155,7 @@ export class EntityListService {
|
|
|
155
155
|
FROM ${tableName} WHERE 1=1 `;
|
|
156
156
|
const argsObjectList: any[] = [];
|
|
157
157
|
if (parentId) {
|
|
158
|
-
query += `parent_id = ? AND parent_type = ? `;
|
|
158
|
+
query += `AND parent_id = ? AND parent_type = ? `;
|
|
159
159
|
argsObjectList.push(parentId);
|
|
160
160
|
argsObjectList.push(parentType);
|
|
161
161
|
}
|