summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/field.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/field.js')
-rw-r--r--install/ui/src/freeipa/field.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/field.js b/install/ui/src/freeipa/field.js
index 5905bbab6..ea22d6d06 100644
--- a/install/ui/src/freeipa/field.js
+++ b/install/ui/src/freeipa/field.js
@@ -112,10 +112,10 @@ field.field = IPA.field = function(spec) {
that.label = text.get(spec.label);
/**
- * Tooltip
+ * Title
* @property {string}
*/
- that.tooltip = text.get(spec.tooltip);
+ that.title = text.get(spec.title);
/**
* Measurement unit
@@ -299,8 +299,8 @@ field.field = IPA.field = function(spec) {
if (!that.label) {
that.label = that.metadata.label || '';
}
- if (!that.tooltip) {
- that.tooltip = that.metadata.doc || '';
+ if (!that.title) {
+ that.title = that.metadata.doc || '';
}
}