feat: increase response body limit

This commit is contained in:
2026-03-24 17:08:40 +04:00
parent ecb876c964
commit bb05dae926
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -226,7 +226,7 @@
// Body preview
if (bodyPreview) {
html += '<div>';
html += '<div class="text-xs text-gray-500 mb-1">Response Body <span class="text-gray-600">(first 500 chars)</span></div>';
html += '<div class="text-xs text-gray-500 mb-1">Response Body <span class="text-gray-600">(up to 25KB)</span></div>';
html += `<pre class="bg-gray-800/50 border border-border-subtle rounded-lg px-3 py-2 text-xs font-mono text-gray-300 whitespace-pre-wrap break-all max-h-80 overflow-y-auto">${escapeHtml(bodyPreview)}</pre>`;
html += '</div>';
}