fix: keep custom header values when editing resource

This commit is contained in:
Pavan Kumar
2025-11-28 19:06:09 +05:30
parent 2cfb0e05cf
commit 18070a37a8

View File

@@ -307,7 +307,7 @@ async function updateHttpResource(
} }
} }
let headers = null; let headers = resource.headers;
if (updateData.headers) { if (updateData.headers) {
headers = JSON.stringify(updateData.headers); headers = JSON.stringify(updateData.headers);
} }