From 0f1325f52a5eb254ec4af7d51802459f0605c972 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Thu, 6 Oct 2022 15:09:20 +0200 Subject: refactor: Use string variable value directly instead of encapsulating in template literal --- src-vue/src/views/DeveloperView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-vue/src') diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue index 7ffc7d40..f08908a6 100644 --- a/src-vue/src/views/DeveloperView.vue +++ b/src-vue/src/views/DeveloperView.vue @@ -78,7 +78,7 @@ export default defineComponent({ .catch((error) => { ElNotification({ title: 'Error', - message: `${error}`, + message: error, type: 'error', position: 'bottom-right' }); -- cgit v1.2.3