summaryrefslogtreecommitdiffstats
path: root/ui/src/utils.ts
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-24 20:55:57 -0500
committerDessalines <tyhou13@gmx.com>2020-01-24 20:55:57 -0500
commitd26f4c50d300e108882c23c954155bd03abe3d88 (patch)
tree27fb6f0d75edd818c6aff20f4404568042e6ce65 /ui/src/utils.ts
parented842dfb720b4dc23000459eb4a3f203728ab565 (diff)
Moving notification to bottom left. Fixes #457
Diffstat (limited to 'ui/src/utils.ts')
-rw-r--r--ui/src/utils.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/src/utils.ts b/ui/src/utils.ts
index 6a0ffdb3..7803ee4e 100644
--- a/ui/src/utils.ts
+++ b/ui/src/utils.ts
@@ -382,6 +382,8 @@ export function toast(text: string, background: string = 'success') {
Toastify({
text: text,
backgroundColor: backgroundColor,
+ gravity: 'bottom',
+ position: 'left',
}).showToast();
}