diff --git a/InvenTree/templates/js/modals.js b/InvenTree/templates/js/modals.js index 3ff20a9e5f..a55a62746c 100644 --- a/InvenTree/templates/js/modals.js +++ b/InvenTree/templates/js/modals.js @@ -792,6 +792,11 @@ function handleModalForm(url, options) { if (options.secondary) { attachSecondaries(modal, options.secondary); } + + // Set modal title with response + if (response.title) { + modalSetTitle(modal, response.title); + } } else { $(modal).modal('hide');