diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-07-02 23:22:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 23:22:03 +0200 |
commit | 9dbc661dfdb7830399c7c1100d58cca3f4d3656f (patch) | |
tree | ec8cddb79c07d3fe41c22d9bc5ecff3af4cef31d /src-vue/src | |
parent | aa5e6aecf3ccf1ca5be4750d76d41e1e747791fa (diff) | |
download | FlightCore-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/src')
-rw-r--r-- | src-vue/src/views/DeveloperView.vue | 1 |
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); |