From ffb0354abeb5501a2ed31592d7f4fe5f1d323ac2 Mon Sep 17 00:00:00 2001 From: Chenjianyu Date: Tue, 25 Jul 2023 13:49:25 +0800 Subject: [PATCH] * fix jump back failed bug, bug #36724. --- module/ai/view/inputinject.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/ai/view/inputinject.html.php b/module/ai/view/inputinject.html.php index 1fb33008c0..abca0114b7 100644 --- a/module/ai/view/inputinject.html.php +++ b/module/ai/view/inputinject.html.php @@ -89,7 +89,7 @@ const promptId = publishButton.dataset.promptid; const aTag = document.createElement('a'); - aTag.href = createLink('ai', 'promptPublish', 'promptId=' + promptId + '&$backToTestingLocation=true'); + aTag.href = createLink('ai', 'promptPublish', 'promptId=' + promptId + '&backToTestingLocation=true'); aTag.style.display = 'none'; document.body.appendChild(aTag); aTag.click();