summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/user.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/user.js')
-rw-r--r--install/ui/src/freeipa/user.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/install/ui/src/freeipa/user.js b/install/ui/src/freeipa/user.js
index e30311bbf..0e828c16b 100644
--- a/install/ui/src/freeipa/user.js
+++ b/install/ui/src/freeipa/user.js
@@ -29,13 +29,14 @@ define([
'./reg',
'./rpc',
'./text',
+ './dialog',
'./dialogs/password',
'./details',
'./search',
'./association',
'./entity',
'./certificate'],
- function(builder, IPA, $, phases, reg, rpc, text, password_dialog) {
+ function(builder, IPA, $, phases, reg, rpc, text, dialogs) {
/**
* User module
@@ -638,7 +639,7 @@ IPA.user.password_dialog_pre_op = function(spec) {
IPA.user.password_dialog = function(spec) {
- var that = password_dialog.dialog(spec);
+ var that = dialogs.command_dialog(spec);
that.is_self_service = function() {
var self_service = that.args[0] === IPA.whoami.uid[0];