From 0f008790f192a491ac3901d54b506b756f57fef8 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 3 Aug 2026 18:35:03 -0400 Subject: fix(admin): null step action values render as empty, not null --- internal/admin/static/intereditor.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/admin/static') diff --git a/internal/admin/static/intereditor.js b/internal/admin/static/intereditor.js index 2023874..3928299 100644 --- a/internal/admin/static/intereditor.js +++ b/internal/admin/static/intereditor.js @@ -679,7 +679,7 @@ function ie_renderAct(stepObj, secId, idx, si, secPath) { } else { kvKeys.forEach(function(k) { rows += '
'; - rows += ''; + rows += ''; rows += '
'; }); } @@ -693,7 +693,7 @@ function ie_renderAct(stepObj, secId, idx, si, secPath) { rows += ''; } else if (at.kind === 'search') { rows += '
' + esc(at.label) + ''; - rows += ''; + rows += ''; rows += ''; rows += '
'; } else if (at.kind === 'droptable') { @@ -704,7 +704,7 @@ function ie_renderAct(stepObj, secId, idx, si, secPath) { rows += ''; } else { rows += '
' + esc(at.label) + ''; - rows += ''; + rows += ''; rows += ''; rows += '
'; if (at.kind === 'text') { -- cgit v1.2.3