Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Apr 5, 2018
1 parent 1a0bab7 commit ba22156
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/-private/system/model/internal-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ export default class InternalModel {
break;
case 'belongsTo':
this.setDirtyBelongsTo(name, propertyValue);
relationships.get(name).setHasData(true);
relationships.get(name).setHasRelationshipDataProperty(true);
break;
case 'hasMany':
this.setDirtyHasMany(name, propertyValue);
relationships.get(name).setHasData(true);
relationships.get(name).setHasRelationshipDataProperty(true);
break;
default:
createOptions[name] = propertyValue;
Expand Down

0 comments on commit ba22156

Please sign in to comment.