From 1ef21700c0ce663c221a752e3211ee2cffd3a894 Mon Sep 17 00:00:00 2001 From: eeintech Date: Wed, 21 Oct 2020 09:26:07 -0500 Subject: [PATCH] Fixed Part notes template (check for NULL value before mardown render) --- InvenTree/part/templates/part/notes.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/InvenTree/part/templates/part/notes.html b/InvenTree/part/templates/part/notes.html index 3f833325cd..1c46f53bcd 100644 --- a/InvenTree/part/templates/part/notes.html +++ b/InvenTree/part/templates/part/notes.html @@ -37,7 +37,9 @@
+ {% if part.notes %} {{ part.notes | markdownify }} + {% endif %}