Skip to content
Snippets Groups Projects
Commit 9394f4f5 authored by syuilo's avatar syuilo
Browse files

Fix error dialog

parent 84a7a955
No related branches found
No related tags found
No related merge requests found
......@@ -564,7 +564,7 @@ export default defineComponent({
this.posting = false;
os.dialog({
type: 'error',
text: err.message + '<br>' + (err as any).id,
text: err.message + '\n' + (err as any).id,
});
});
},
......
......@@ -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,
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment