diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-10-06 15:09:20 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-10-06 15:09:20 +0200 |
commit | 0f1325f52a5eb254ec4af7d51802459f0605c972 (patch) | |
tree | 82ba942c7fa95f94fb3302b40c1c4bc0e2c155ed /src-vue/src | |
parent | 3359b95eb3defa968ee391bc9ca7426754e5e78f (diff) | |
download | FlightCore-0f1325f52a5eb254ec4af7d51802459f0605c972.tar.gz FlightCore-0f1325f52a5eb254ec4af7d51802459f0605c972.zip |
refactor: Use string variable value directly
instead of encapsulating in template literal
Diffstat (limited to 'src-vue/src')
-rw-r--r-- | src-vue/src/views/DeveloperView.vue | 2 |
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' }); |