diff --git a/static/js/mithril/editor.js b/static/js/mithril/editor.js index cfd6cef..0bd5900 100644 --- a/static/js/mithril/editor.js +++ b/static/js/mithril/editor.js @@ -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",