Skip to content

Commit b786aac

Browse files
authored
Merge pull request #288 from IABTechLab/ajy-UID2-Fix-encoding-for-keypair-name-on-call
Remove encoding for keypair name for oncall flow
2 parents ab149d3 + 43bc1c0 commit b786aac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webroot/adm/oncall/generate-cstg-keypair.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ <h5>Create a new CSTG Pair</h5>
542542
$("#keypairSearchOutput").text("");
543543

544544
const siteId = encodeURIComponent($("#createKeypair-workflow-siteId").val());
545-
const name = encodeURIComponent($("#createKeypair-workflow-name").val());
545+
const name = $("#createKeypair-workflow-name").val();
546546

547547
const payload = { "site_id": parseInt(siteId), "name": name, "disabled": false }
548548

0 commit comments

Comments
 (0)