diff --git a/InvenTree/templates/js/translated/forms.js b/InvenTree/templates/js/translated/forms.js index 292b1d89ad..b4bbdc2cc4 100644 --- a/InvenTree/templates/js/translated/forms.js +++ b/InvenTree/templates/js/translated/forms.js @@ -1514,7 +1514,9 @@ function constructField(name, parameters, options) { html += `
`; // Add a label - html += constructLabel(name, parameters); + if (!options.hideLabels) { + html += constructLabel(name, parameters); + } html += `
`; @@ -1561,7 +1563,7 @@ function constructField(name, parameters, options) { html += `
`; // input-group } - if (parameters.help_text) { + if (parameters.help_text && !options.hideLabels) { html += constructHelpText(name, parameters, options); }