rez_core 2.0.63 → 2.0.65
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
|
@@ -96,7 +96,7 @@ export class MenuRepository extends Repository<MenuData> {
|
|
|
96
96
|
const [sch] = await this.dataSource.query(`
|
|
97
97
|
SELECT s.brn_id, b.org_id
|
|
98
98
|
FROM cr_school s
|
|
99
|
-
LEFT JOIN
|
|
99
|
+
LEFT JOIN cr_brand b ON s.brn_id = b.id
|
|
100
100
|
WHERE s.id = $1
|
|
101
101
|
`, [levelId]);
|
|
102
102
|
|