Bug 1619476 - Prevent submitting device form on an invalidation r=bradwerth

Differential Revision: https://phabricator.services.mozilla.com/D65574

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Micah Tigley 2020-03-05 18:43:25 +00:00
Родитель 1c9c0b6e3f
Коммит 27b9bd8b21
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -62,7 +62,9 @@ class DeviceForm extends PureComponent {
});
}
onDeviceFormSave() {
onDeviceFormSave(e) {
e.preventDefault();
if (!this.pixelRatioInputRef.current.checkValidity()) {
return;
}