From 0b31165036d3df9782116f2069f1722b7186349c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 10 Jun 2019 16:02:36 +0300 Subject: [PATCH] Fix rev.ae11df6ed3b8a133e92804af86123974fd284d0c (show tooltips in ComboDataView after render or click on item) --- apps/common/main/lib/component/DataView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js index 5f8ccbf99..86f0b0c8b 100644 --- a/apps/common/main/lib/component/DataView.js +++ b/apps/common/main/lib/component/DataView.js @@ -151,7 +151,7 @@ define([ var tip = el.data('bs.tooltip'); if (tip) { - if (tip.dontShow===undefined) + if (tip.dontShow===undefined && el.is(':hover')) tip.dontShow = true; }