We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a04cc29 commit 563fb54Copy full SHA for 563fb54
lib/stack/contentType/entry/index.js
@@ -30,7 +30,7 @@ export function Entry (http, data) {
30
this.stackHeaders.api_version = this.apiVersion;
31
}
32
const { stackHeaders, ...entryData } = data.entry;
33
- Object.assign(this, entryData);
+ Object.assign(this, cloneDeep(entryData));
34
this.urlPath = `/content_types/${this.content_type_uid}/entries/${this.uid}`
35
36
/**
0 commit comments