Prevent form to be submitted twice

This commit is contained in:
Alfredo Sumaran 2017-01-26 14:05:27 -05:00
parent 9d7999242d
commit 6d96e83cfd

View file

@ -36,6 +36,7 @@
}
onSubmitForm(e) {
e.preventDefault();
return this.saveForm();
}