Moving notification to bottom left. Fixes #457

This commit is contained in:
Dessalines 2020-01-24 20:55:57 -05:00
parent 197bd67601
commit 61a5bcaf04

2
ui/src/utils.ts vendored
View file

@ -382,6 +382,8 @@ export function toast(text: string, background: string = 'success') {
Toastify({
text: text,
backgroundColor: backgroundColor,
gravity: 'bottom',
position: 'left',
}).showToast();
}