Skip to content

Commit

Permalink
Merge pull request #31 from clichttt/bugfix/fix-update-qualified-para…
Browse files Browse the repository at this point in the history
…meter

Fix parameter toQualified function
  • Loading branch information
dufourgilles authored Feb 28, 2019
2 parents 2b2fa7b + 396875d commit 6149636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ember.js
Original file line number Diff line number Diff line change
Expand Up @@ -2297,7 +2297,7 @@ Parameter.prototype.setValue = function(value, callback) {
}

Parameter.prototype.toQualified = function() {
let qp = new QualifiedNode(this.getPath());
let qp = new QualifiedParameter(this.getPath());
qp.update(this);
return qp;
}
Expand Down

0 comments on commit 6149636

Please sign in to comment.