fixed sticky tooltips in settings

This commit is contained in:
antelle 2020-05-22 22:44:50 +02:00
parent 1fafa68793
commit 8de55c450a
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class FieldView extends View {
this.tip = typeof this.model.tip === 'function' ? this.model.tip() : this.model.tip;
if (this.tip) {
this.valueEl.attr('title', this.tip);
Tip.createTip(this.valueEl);
Tip.createTip(this.valueEl[0]);
}
}
}