diff --git a/components/app.js b/components/app.js index dfc4cf7..1568565 100644 --- a/components/app.js +++ b/components/app.js @@ -1752,7 +1752,11 @@ export default class App extends Component { render() { if (this.state.loading) { - return html`
`; + let error = null; + if (this.state.error) { + error = html`

${this.state.error}

`; + } + return html`
${error}
`; } let activeBuffer = null, activeServer = null, activeBouncerNetwork = null;