diff --git a/InvenTree/static/script/modal_form.js b/InvenTree/static/script/modal_form.js index 952e722f75..e87af2467a 100644 --- a/InvenTree/static/script/modal_form.js +++ b/InvenTree/static/script/modal_form.js @@ -86,6 +86,10 @@ function openModal(modal, title='', content='') { modalSetTitle(modal, title); modalSetContent(modal, content); + $(modal).modal({ + backdrop: 'static', + keyboard: false, + }); $(modal).modal('show'); }