summaryrefslogtreecommitdiff
path: root/src/client/os.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-10-28 22:47:57 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-10-28 22:47:57 +0900
commit9394f4f5400c7afe76d89f8660d8a6bef758a033 (patch)
tree7e0a35a4a2e21d2b47b7db280043e1e3f0d982d2 /src/client/os.ts
parentウィンドウ右クリックでサイドビューで開けるように (diff)
downloadmisskey-9394f4f5400c7afe76d89f8660d8a6bef758a033.tar.gz
misskey-9394f4f5400c7afe76d89f8660d8a6bef758a033.tar.bz2
misskey-9394f4f5400c7afe76d89f8660d8a6bef758a033.zip
Fix error dialog
Diffstat (limited to 'src/client/os.ts')
-rw-r--r--src/client/os.ts2
1 files changed, 1 insertions, 1 deletions
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 + '<br>' + (e as any).id,
+ text: e.message + '\n' + (e as any).id,
});
});