diff --git a/client/components/modals/AddCustomMetadataProviderModal.vue b/client/components/modals/AddCustomMetadataProviderModal.vue index a68c63cc..da24588b 100644 --- a/client/components/modals/AddCustomMetadataProviderModal.vue +++ b/client/components/modals/AddCustomMetadataProviderModal.vue @@ -10,14 +10,14 @@
- +
- +
@@ -65,7 +65,11 @@ export default { } }, methods: { - submitForm() { + async submitForm() { + // Remove focus from active input + document.activeElement?.blur?.() + await this.$nextTick() + if (!this.newName || !this.newUrl) { this.$toast.error(this.$strings.ToastProviderNameAndUrlRequired) return