1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-02-21 19:19:39 +02:00

Make setup show external DB parameters automaticaly when selecting postgres

Before, the "external postgres" options were not shown, even though
"extrnal" was pre-selected. This fixes the mechanics surrounding the
picker.
This commit is contained in:
Dario Ernst 2020-10-12 20:30:26 +02:00
parent 7b27d0dd4e
commit 7483ea1d49
2 changed files with 7 additions and 2 deletions

View File

@ -51,7 +51,12 @@ $(document).ready(function() {
} else if (this.value == 'postgresql') {
$("#postgres_db").show();
$("#external_db").hide();
$("#external_db").prop('checked', false);
$("#external_psql").prop('checked', true);
$("#external_db").show();
$("#db_user").prop('required',true);
$("#db_pw").prop('required',true);
$("#db_url").prop('required',true);
$("#db_name").prop('required',true);
} else if (this.value == 'mysql') {
$("#postgres_db").hide();
$("#external_db").show();

View File

@ -20,7 +20,7 @@
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="postgresql" value="external" id="external_psql" checked>
<input class="form-check-input" type="radio" name="postgresql" value="external" id="external_psql">
<label class="form-check-label" for="external_psql">
I want to connect to an external database
</label>