aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/views/ChangelogView.vue
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-10-20 23:14:11 +0200
committerGitHub <noreply@github.com>2022-10-20 23:14:11 +0200
commit5cc82fb80f5f91ed9d4a32a71e090a9a805ff2a9 (patch)
tree431d14cb0983e78bb8ac870e3ad55088a4d2345e /src-vue/src/views/ChangelogView.vue
parent31f26c4dd4a92bb5826ad2af9ccb9808fca40e40 (diff)
downloadFlightCore-5cc82fb80f5f91ed9d4a32a71e090a9a805ff2a9.tar.gz
FlightCore-5cc82fb80f5f91ed9d4a32a71e090a9a805ff2a9.zip
refactor: Various formatting and fixes (#23)
* refactor: Add error return type * style: Auto-format Only minor changes, did not take over all changes from auto-format. * refactor: Rename function to get FC version number To make it more clear which version number we're getting (FlightCore vs Northstar)
Diffstat (limited to 'src-vue/src/views/ChangelogView.vue')
-rw-r--r--src-vue/src/views/ChangelogView.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/src-vue/src/views/ChangelogView.vue b/src-vue/src/views/ChangelogView.vue
index 9fca5e5b..ff4f2659 100644
--- a/src-vue/src/views/ChangelogView.vue
+++ b/src-vue/src/views/ChangelogView.vue
@@ -1,6 +1,7 @@
<template>
<div class="fc__changelog__container">
- <el-link :underline="false" icon="DocumentCopy" target="_blank" href="https://github.com/R2Northstar/Northstar/releases">
+ <el-link :underline="false" icon="DocumentCopy" target="_blank"
+ href="https://github.com/R2Northstar/Northstar/releases">
Open release notes
</el-link>
</div>
@@ -18,6 +19,6 @@ export default {
}
.el-link {
- color: white;
+ color: white;
}
</style>