4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 04:36:41 +00:00

Fixes #6531 -- Fix "Send Test Message" modal dialog.

This commit is contained in:
Buster Neece 2023-08-21 04:03:50 -05:00
parent 1e2d6e1db7
commit e3c768c4a6
No known key found for this signature in database
2 changed files with 12 additions and 2 deletions

View File

@ -23,6 +23,8 @@ release channel, you can take advantage of these new features and fixes.
## Bug Fixes
- Fixed an issue preventing the "Send Test E-mail" modal from appearing on the System Settings page.
- Fixed an issue preventing embeddable players from working in private (Incognito, Firefox/Safari Private) windows.
- Fixed an issue preventing advanced configuration, authhash and other settings from appearing on the Mount Points edit

View File

@ -50,7 +50,7 @@ const props = defineProps({
}
});
const {form, v$, ifValid} = useVuelidateOnForm(
const {form, v$, resetForm, ifValid} = useVuelidateOnForm(
{
emailAddress: {required, email}
},
@ -64,8 +64,12 @@ const {form, v$, ifValid} = useVuelidateOnForm(
const $modal = ref(); // BModal
const open = () => {
$modal.value.show();
};
const close = () => {
v$.value.reset();
resetForm();
$modal.value.hide();
}
@ -86,4 +90,8 @@ const doSendTest = () => {
});
});
};
defineExpose({
open
});
</script>