From 4307de3beac2aaab128b7acb8872ab9313a4fabc Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Fri, 27 Nov 2020 20:17:01 +0100 Subject: [PATCH] Change reload notification colors --- resources/js/views/Accounts.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/views/Accounts.vue b/resources/js/views/Accounts.vue index b7801244..7d695dbe 100644 --- a/resources/js/views/Accounts.vue +++ b/resources/js/views/Accounts.vue @@ -346,7 +346,7 @@ }) if ( this.accounts.length > 0 && !objectEquals(accounts, this.accounts) ) { - this.$notify({ type: 'is-warning', text: '' + this.$t('commons.some_data_have_changed') + '
' + this.$t('commons.reload') + '', duration:-1, closeOnClick: false }) + this.$notify({ type: 'is-dark', text: '' + this.$t('commons.some_data_have_changed') + '
' + this.$t('commons.reload') + '', duration:-1, closeOnClick: false }) } else if( this.accounts.length === 0 && accounts.length === 0 ) { // No account yet, we force user to land on the start view.