set latest release as selected release by default

This commit is contained in:
Gamebrary 2020-09-26 20:44:05 -07:00
parent 66d173aec5
commit 233c28e1b3

View file

@ -80,22 +80,18 @@ export default {
this.selectedRelease = latestRelease; this.selectedRelease = latestRelease;
if (this.notification) { if (this.notification && latestRelease && latestRelease.tag_name) {
const [latestRelease] = this.releases; this.$store.commit('UPDATE_SETTING', { key: 'release', value: latestRelease.tag_name });
if (latestRelease && latestRelease.tag_name) { this.$store.dispatch('SAVE_SETTINGS', this.settings)
this.$store.commit('UPDATE_SETTING', { key: 'release', value: latestRelease.tag_name }); .then(() => {
this.$store.commit('SET_NOTIFICATION', false);
this.$store.dispatch('SAVE_SETTINGS', this.settings) })
.then(() => { .catch(() => {
this.$store.commit('SET_NOTIFICATION', false); this.$bvToast.toast(
}) 'There was an error saving your settings',
.catch(() => { { title: 'Error', variant: 'danger' });
this.$bvToast.toast( });
'There was an error saving your settings',
{ title: 'Error', variant: 'danger' });
});
}
} }
}, },