Don't attach onclick to save button on stoage modal as it is a submit button

pull/3621/head
Isaac Connor 2022-10-07 15:55:31 -04:00
parent 8794661a3a
commit eed60e7acb
1 changed files with 0 additions and 5 deletions

View File

@ -31,11 +31,6 @@ function getStorageModal(sid) {
.done(function(data) {
insertModalHtml('storageModal', data.html);
$j('#storageModal').modal('show');
// Manage the Save button
$j('#storageSubmitBtn').click(function(evt) {
evt.preventDefault();
$j('#storageModalForm').submit();
});
})
.fail(logAjaxFail);
}