@solidstarters/solid-core 1.2.72 → 1.2.73
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.73",
|
|
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",
|
|
@@ -231,7 +231,7 @@ export class ModelMetadataService {
|
|
|
231
231
|
// Now that we have created fields & model update the model to stamp the userKeyField.
|
|
232
232
|
if (userKeyField) {
|
|
233
233
|
modelMetaDataWithoutFields['userKeyField'] = userKeyField;
|
|
234
|
-
const updatedModelMetadataDto = this.modelMetadataRepo.
|
|
234
|
+
const updatedModelMetadataDto = this.modelMetadataRepo.merge(model, modelMetaDataWithoutFields);
|
|
235
235
|
model = await manager.save(updatedModelMetadataDto);
|
|
236
236
|
}
|
|
237
237
|
|