aboutsummaryrefslogtreecommitdiff
path: root/src-vue
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-07-02 23:22:03 +0200
committerGitHub <noreply@github.com>2023-07-02 23:22:03 +0200
commit9dbc661dfdb7830399c7c1100d58cca3f4d3656f (patch)
treeec8cddb79c07d3fe41c22d9bc5ecff3af4cef31d /src-vue
parentaa5e6aecf3ccf1ca5be4750d76d41e1e747791fa (diff)
downloadFlightCore-9dbc661dfdb7830399c7c1100d58cca3f4d3656f.tar.gz
FlightCore-9dbc661dfdb7830399c7c1100d58cca3f4d3656f.zip
feat: Run `compareTags()` directly after fetching (#405)
In most cases after fetching tags one wants to generate release notes for the two newest. This change saves another click by just running the function directly afterwards.
Diffstat (limited to 'src-vue')
-rw-r--r--src-vue/src/views/DeveloperView.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue
index a7579107..500c9c35 100644
--- a/src-vue/src/views/DeveloperView.vue
+++ b/src-vue/src/views/DeveloperView.vue
@@ -234,6 +234,7 @@ export default defineComponent({
showNotification("Done", "Fetched tags");
this.first_tag = this.ns_release_tags[1];
this.second_tag = this.ns_release_tags[0];
+ this.compareTags();
})
.catch((error) => {
showErrorNotification(error);