dockerregistries: remove usage of secret placeholder
This commit is contained in:
@@ -23,12 +23,12 @@ const customNameservers = ref(false);
|
||||
|
||||
const dnsConfig = ref(DomainsModel.createEmptyConfig());
|
||||
|
||||
const form = useTemplateRef('form');
|
||||
const isFormValid = ref(false);
|
||||
function checkValidity() {
|
||||
isFormValid.value = form.value.checkValidity();
|
||||
}
|
||||
|
||||
const form = useTemplateRef('form');
|
||||
async function onSubmit() {
|
||||
if (!form.value.reportValidity()) return;
|
||||
|
||||
@@ -84,8 +84,7 @@ defineExpose({
|
||||
|
||||
dialog.value.open();
|
||||
|
||||
// ensure we trigger this once
|
||||
setTimeout(checkValidity, 100);
|
||||
setTimeout(checkValidity, 100); // update state of the confirm button
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user