Revert "implementing deployment failure in terminal"

This reverts commit 4c6157361a.
pull/1342/head
davidzagi93@gmail.com 3 years ago
parent 417351fa1f
commit 30736ae3d9
  1. 7
      apps/remix-ide/src/app/panels/terminal.js

@ -88,7 +88,6 @@ class Terminal extends Plugin {
this.call('menuicons', 'select', 'debugger')
this.call('debugger', 'debug', hash)
})
this.logHtmlResponse = []
}
onActivation () {
@ -103,9 +102,8 @@ class Terminal extends Plugin {
}
logHtml (html) {
// console.log({ html: html.innerText })
this.logHtmlResponse.push(html.innerText)
this.renderComponent()
var command = this.commands.html
if (typeof command === 'function') command(html)
}
render () {
@ -140,7 +138,6 @@ class Terminal extends Plugin {
commands = {this.commands}
txListener = {this.txListener}
eventsDecoder = {this.eventsDecoder}
logHtml = {this.logHtmlResponse}
/>,
this.element
)

Loading…
Cancel
Save