diff options
Diffstat (limited to 'install/ui/entity.js')
-rw-r--r-- | install/ui/entity.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js index 82af8234..4a8971d3 100644 --- a/install/ui/entity.js +++ b/install/ui/entity.js @@ -204,7 +204,14 @@ IPA.entity = function (spec) { }; if (config){ - spec.associator = config.associator; + for (var key in config){ + /*name is special, as iut has already been munged + into the association name */ + if (key === "name"){ + continue; + } + spec[key] = config[key] ; + } } facet = IPA.association_facet(spec); |