Clean up "no updates" strings

This commit is contained in:
Nicholas Wallace 2024-08-28 22:05:31 -07:00
parent bc2515f993
commit 95143a7816
10 changed files with 13 additions and 15 deletions

View file

@ -141,7 +141,7 @@ export default {
}
})
if (!Object.keys(updatePayload).length) {
this.$toast.info(this.$strings.MessageNoUpdateNecessary)
this.$toast.info(this.$strings.ToastNoUpdatesNecessary)
return
}
this.processing = true
@ -158,7 +158,7 @@ export default {
} else if (result.merged) {
this.$toast.success(this.$strings.ToastAuthorUpdateMerged)
this.show = false
} else this.$toast.info(this.$strings.MessageNoUpdatesWereNecessary)
} else this.$toast.info(this.$strings.ToastNoUpdatesNecessary)
}
this.processing = false
},
@ -240,7 +240,7 @@ export default {
...response.author
}
} else {
this.$toast.info(this.$strings.ToastAuthorNoUpdatesNeeded)
this.$toast.info(this.$strings.ToastNoUpdatesNecessary)
}
this.processing = false
}