From d37fc06c2f9bbae4927a332899c866aff0f15792 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 11 Dec 2021 18:23:02 +0100 Subject: [PATCH] feat: use a success notification instead of a message --- src/components/misc/api-config.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/misc/api-config.vue b/src/components/misc/api-config.vue index c0e542f3a..9a4e86bf6 100644 --- a/src/components/misc/api-config.vue +++ b/src/components/misc/api-config.vue @@ -101,7 +101,7 @@ export default { // Set it + save it to local storage to save us the hoops this.errorMsg = '' - this.successMsg = this.$t('apiConfig.success', {domain: this.apiDomain}) + this.$message.success({message: this.$t('apiConfig.success', {domain: this.apiDomain})}) this.configureApi = false this.apiUrl = url this.$emit('foundApi', this.apiUrl)