diff options
Diffstat (limited to 'install/static/host.js')
-rw-r--r-- | install/static/host.js | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/install/static/host.js b/install/static/host.js index dd435c56..c3851ff7 100644 --- a/install/static/host.js +++ b/install/static/host.js @@ -88,9 +88,17 @@ IPA.host_add_dialog = function (spec) { that.init = function() { that.add_field(IPA.text_widget({ - 'name': 'fqdn', - 'size': 40, - 'undo': false + name: 'fqdn', + size: 40, + undo: false + })); + + // TODO: Replace with i18n label + that.add_field(IPA.checkbox_widget({ + name: 'force', + label: 'Force', + tooltip: 'force host name even if not in DNS', + undo: false })); that.add_dialog_init(); |