From 9dbc661dfdb7830399c7c1100d58cca3f4d3656f Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Sun, 2 Jul 2023 23:22:03 +0200 Subject: 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. --- src-vue/src/views/DeveloperView.vue | 1 + 1 file changed, 1 insertion(+) 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); -- cgit v1.2.3