fix: add confirmation on deleting a subscription
This commit is contained in:
parent
f0e6392f06
commit
6adddf87a1
@ -68,6 +68,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
async deleteSubscription() {
|
||||
if (confirm(t('repod', 'Are you sure you want to delete this subscription?'))) {
|
||||
try {
|
||||
this.loading = true
|
||||
await axios.post(generateUrl('/apps/gpoddersync/subscription_change/create'), { add: [], remove: [this.url] })
|
||||
@ -78,6 +79,7 @@ export default {
|
||||
this.loading = false
|
||||
this.$store.dispatch('subscriptions/fetch')
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user