Kaynağa Gözat

fixes #11437 for V7 (#11588)

tags/7.7.21
Olli Tietäväinen 5 yıl önce
ebeveyn
işleme
ca00a8a652
No account linked to committer's email address

+ 6
- 1
client/src/main/java/com/vaadin/client/ui/VFilterSelect.java Dosyayı Görüntüle

@@ -1416,7 +1416,12 @@ public class VFilterSelect extends Composite
* way, and they might be useful in a combo box where new items are
* allowed.
*/
getElement().setAttribute("autocomplete", "nope");
if (BrowserInfo.get().isChrome()) {
// Chrome supports "off" and random number does not work with Chrome
getElement().setAttribute("autocomplete", "off");
} else {
getElement().setAttribute("autocomplete", Math.random() + "");
}
}

/**

Loading…
İptal
Kaydet