Bug 1907787 - Add `pattern` support for address fields. r=dimi

Differential Revision: https://phabricator.services.mozilla.com/D216516
This commit is contained in:
Issam Mani 2024-07-16 13:53:37 +00:00
Родитель 5f6a43f335
Коммит 4640d8d0eb
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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) {