зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1907787 - Add `pattern` support for address fields. r=dimi
Differential Revision: https://phabricator.services.mozilla.com/D216516
This commit is contained in:
Родитель
5f6a43f335
Коммит
4640d8d0eb
|
@ -16,6 +16,9 @@ const fieldTemplates = {
|
|||
name: item.fieldId,
|
||||
required: item.required,
|
||||
value: item.value ?? "",
|
||||
// Conditionally add pattern attribute since pattern=""/false/undefined
|
||||
// results in weird behaviour.
|
||||
...(item.pattern && { pattern: item.pattern }),
|
||||
};
|
||||
},
|
||||
input(item) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче