UX: disable browser's autocomplete in search menu

This commit is contained in:
Régis Hanol 2019-02-06 17:06:23 +01:00 committed by Neil Lalonde
parent f01ca1f22d
commit 1e9a884244

View File

@ -19,6 +19,7 @@ createWidget("search-term", {
return {
type: "text",
value: attrs.value || "",
autocomplete: "off",
placeholder: attrs.contextEnabled ? "" : I18n.t("search.title")
};
},