fix: message dialogs not displaying any text
Massimo Melina committed
Jan 6, 2022 at 20:07 UTC
fbc760633398f74e4662c2d6b02ed0003dd4d3af
1 file changed
+1
-1
frontend/src/dialog.ts
+1
-1
@@ -121,7 +121,7 @@ export async function alertDialog(msg: string | Error, type:AlertType='info') {
121
}))
122
123
function Content(){
124
- return h('span', String(msg))
124
+ return h('span', {}, String(msg))
125
}
126
}
127