summaryrefslogtreecommitdiffstats
path: root/install/static/service.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/service.js')
-rw-r--r--install/static/service.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/install/static/service.js b/install/static/service.js
index c028eb6ad..09fd2eab8 100644
--- a/install/static/service.js
+++ b/install/static/service.js
@@ -76,24 +76,27 @@ function ipa_service_add_dialog(spec) {
that.init = function() {
- that.add_dialog_init();
-
that.add_field(ipa_widget({
name: 'krbprincipalname'
}));
+ // TODO: Replace with i18n label
that.add_field(ipa_text_widget({
- 'name': 'service', 'label': 'Service',
+ 'name': 'service',
+ 'label': 'Service',
'size': 20,
'undo': false
}));
+ // TODO: Replace with i18n label
that.add_field(ipa_text_widget({
'name': 'host',
'label': 'Host Name',
'size': 40,
'undo': false
}));
+
+ that.add_dialog_init();
};
that.create = function() {