diff --git a/InvenTree/build/templates/build/tabs.html b/InvenTree/build/templates/build/tabs.html index ee6667ebcf..e9f63cc05b 100644 --- a/InvenTree/build/templates/build/tabs.html +++ b/InvenTree/build/templates/build/tabs.html @@ -5,7 +5,7 @@ {% trans "Details" %} - {% trans "Notes" %} + {% trans "Notes" %}{% if build.notes %} {% endif %} {% trans "Assign Parts" %} diff --git a/InvenTree/order/templates/order/tabs.html b/InvenTree/order/templates/order/tabs.html index e3bcd6a0f7..e673a3271e 100644 --- a/InvenTree/order/templates/order/tabs.html +++ b/InvenTree/order/templates/order/tabs.html @@ -5,6 +5,6 @@ {% trans "Items" %} - {% trans "Notes" %} + {% trans "Notes" %}{% if order.notes %} {% endif %} diff --git a/InvenTree/part/templates/part/tabs.html b/InvenTree/part/templates/part/tabs.html index 8d8d38b75e..717918e542 100644 --- a/InvenTree/part/templates/part/tabs.html +++ b/InvenTree/part/templates/part/tabs.html @@ -55,6 +55,6 @@ {% trans "Attachments" %} {% if part.attachment_count > 0 %}{{ part.attachment_count }}{% endif %} - {% trans "Notes" %} + {% trans "Notes" %}{% if part.notes %} {% endif %} \ No newline at end of file