diff options
Diffstat (limited to 'app.js')
| -rw-r--r-- | app.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,7 +48,7 @@ function CErr(text) { var el = div( - div("🗙").$cls("close").$click(errClose), + div("✖").$cls("close").$click(errClose), span("⚠"), text, ).$cls("err"); @@ -120,7 +120,7 @@ mount(app, (h) => { loading(isLoading); return [ - div(error && CErr(error.message)), + div(error && CErr(String(error))), main( navbar(h), section(router(h)) |
