aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/views/DeveloperView.vue
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-06 15:09:20 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-06 15:09:20 +0200
commit0f1325f52a5eb254ec4af7d51802459f0605c972 (patch)
tree82ba942c7fa95f94fb3302b40c1c4bc0e2c155ed /src-vue/src/views/DeveloperView.vue
parent3359b95eb3defa968ee391bc9ca7426754e5e78f (diff)
downloadFlightCore-0f1325f52a5eb254ec4af7d51802459f0605c972.tar.gz
FlightCore-0f1325f52a5eb254ec4af7d51802459f0605c972.zip
refactor: Use string variable value directly
instead of encapsulating in template literal
Diffstat (limited to 'src-vue/src/views/DeveloperView.vue')
-rw-r--r--src-vue/src/views/DeveloperView.vue2
1 files changed, 1 insertions, 1 deletions
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'
});