From 87bc03adcc9993916d57434bd546ee6a4b8346ef Mon Sep 17 00:00:00 2001 From: lesion Date: Fri, 5 Aug 2022 18:10:36 +0200 Subject: [PATCH] minor --- components/Snackbar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Snackbar.vue b/components/Snackbar.vue index c253e623..03a75b17 100644 --- a/components/Snackbar.vue +++ b/components/Snackbar.vue @@ -35,7 +35,7 @@ export default { this.$root.$message = (message, opts = {}) => { this.active = true this.message = this.$t(message, opts) - this.color = opts.color || 'secondary' + this.color = opts.color || 'primary' this.icon = opts.icon || (this.color === 'success' ? mdiInformation : mdiAlert) } }