@solidstarters/solid-core 1.2.105 → 1.2.106
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": "@solidstarters/solid-core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.106",
|
|
4
4
|
"description": "This module is a NestJS module containing all the required core providers required by a Solid application",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -162,9 +162,10 @@ export class FieldMetadataService {
|
|
|
162
162
|
});
|
|
163
163
|
|
|
164
164
|
if (existingInverseField) {
|
|
165
|
-
const updatedField = fieldRepository.merge(existingInverseField, inverseField);
|
|
166
|
-
const savedField = await fieldRepository.save(updatedField);
|
|
167
|
-
return savedField;
|
|
165
|
+
// const updatedField = fieldRepository.merge(existingInverseField, inverseField);
|
|
166
|
+
// const savedField = await fieldRepository.save(updatedField);
|
|
167
|
+
// return savedField;
|
|
168
|
+
return existingInverseField;
|
|
168
169
|
}
|
|
169
170
|
else {
|
|
170
171
|
const savedField = await fieldRepository.save(fieldRepository.create(inverseField));
|