about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--wqflask/wqflask/templates/collections/view.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/collections/view.html b/wqflask/wqflask/templates/collections/view.html
index a5f80958..f2008172 100644
--- a/wqflask/wqflask/templates/collections/view.html
+++ b/wqflask/wqflask/templates/collections/view.html
@@ -273,7 +273,11 @@
                     'orderSequence': [ "desc", "asc"],
                     'render': function(data) {
                         if (Object.hasOwn(data, 'additive')){
-                            return data.additive.toFixed(3)
+                            if (data.additive != "") {
+                                return data.additive.toFixed(3)
+                            } else {
+                                return "N/A"
+                            }
                         } else {
                             return "N/A"
                         }