From 5aad4a889dceaaedf843e6aa82937543db12e7f2 Mon Sep 17 00:00:00 2001 From: Yuma Uematsu Date: Wed, 11 Jun 2025 11:38:14 +0000 Subject: [PATCH] fix: remove tojson for string-type manual input (!266) --- viewer/templates/qc/input_qcTests.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/viewer/templates/qc/input_qcTests.html b/viewer/templates/qc/input_qcTests.html index 902e34f37..e5fc194d5 100644 --- a/viewer/templates/qc/input_qcTests.html +++ b/viewer/templates/qc/input_qcTests.html @@ -386,6 +386,9 @@ {% endif %} {% endfor %} + {% elif prop['dataType'] == "string" %} + {{ properties[ prop['code'] ] }} + {% else %} {{ properties[ prop['code'] ] }} @@ -428,6 +431,9 @@ {% endif %} {% endfor %} + {% elif param['dataType'] == "string" %} + {{ parameters[ param['code'] ] }} + {% else %} {{ parameters[ param['code'] ] }} -- GitLab