We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b29577d commit c2f4ecaCopy full SHA for c2f4eca
js/com/component/VarSelector2.js
@@ -320,12 +320,14 @@ define([
320
return false;
321
}
322
}).focus(function () {
323
+ $(this).select();
324
$(this).autocomplete('search', $(this).val());
325
}).click(function () {
326
327
328
}).autocomplete('instance')._renderItem = function(ul, item) {
329
return $('<li>').attr('data-value', item.value)
- .append(`<div class="vp-vs-item">${item.label}<label class="vp-gray-text"> | ${item.dtype}</label></div>`)
330
+ .append(`<div class="vp-vs-item">${item.label}<label class="vp-gray-text vp-cursor"> | ${item.dtype}</label></div>`)
331
.appendTo(ul);
332
};
333
0 commit comments