diff --git a/src/Model.js b/src/Model.js index 36b57d6..e0d541b 100644 --- a/src/Model.js +++ b/src/Model.js @@ -203,7 +203,7 @@ export default class Model { if (this.collection) { return this.collection.create(this, { optimistic }) } else { - return this._create(attributes, { optimistic }) + return this._create(this.attributes.toJS(), { optimistic }) } }