Skip to content

Commit

Permalink
Retrieved all attribute names (inc reserved names). Fixes #533 (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb authored Jul 20, 2016
1 parent 448616b commit 4de9cf2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ define([

OpIntDecorator.prototype.editAttributeMeta = function(name, defSchema) {
var dialog = new AttributeDetailsDialog(),
attrNames = Object.keys(this._node.attributes),
node = this.client.getNode(this._node.id),
attrNames = node.getValidAttributeNames(),
attrInfo = this._node.attributes[name] || defSchema,
schema,
i;
Expand Down

0 comments on commit 4de9cf2

Please sign in to comment.