Skip to content

Commit

Permalink
feat: Run compareTags() directly after fetching (#405)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
GeckoEidechse authored Jul 2, 2023
1 parent aa5e6ae commit 9dbc661
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src-vue/src/views/DeveloperView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9dbc661

Please sign in to comment.