diff options
Diffstat (limited to 'install/ui/aci.js')
-rw-r--r-- | install/ui/aci.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js index 80d5798b..caed44ba 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -314,6 +314,8 @@ IPA.attributes_widget = function(spec) { if (that.object_type) { that.populate(that.object_type); } + + that.create_error_link(container); }; that.load = function(record) { @@ -409,6 +411,10 @@ IPA.attributes_widget = function(spec) { } }; + that.show_undo = function() { + $(that.undo_span).css('display', 'inline-block'); + }; + return that; }; |