From 9394f4f5400c7afe76d89f8660d8a6bef758a033 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 28 Oct 2020 22:47:57 +0900 Subject: Fix error dialog --- src/client/os.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client/os.ts') diff --git a/src/client/os.ts b/src/client/os.ts index b709fe5933..d26f2676d0 100644 --- a/src/client/os.ts +++ b/src/client/os.ts @@ -75,7 +75,7 @@ export function apiWithDialog( promiseDialog(promise, onSuccess, onFailure ? onFailure : (e) => { dialog({ type: 'error', - text: e.message + '
' + (e as any).id, + text: e.message + '\n' + (e as any).id, }); }); -- cgit v1.2.3-freya