Readd response view for editor

This commit is contained in:
Peter Stockings
2025-11-30 15:27:18 +11:00
parent c65a64f81d
commit b1fc0ae2f5

View File

@@ -1023,7 +1023,19 @@ const Editor = {
),
]),
]),
!this.executeLoading &&
!this.error &&
this.response &&
m(ResponseView, {
response: this.response,
responseTime: this.responseTime,
responseSize: this.responseSize,
envEditorValue: this.jsonValue,
isTimer: this.isTimer,
onClose: () => {
this.response = null;
},
}),
/* AI Modal */
this.aiModalOpen && m("div", {
class: "fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50",