v7.3.2.0: Update AJAX request parameter in add.js

This commit changes the element ID fetched to set the 'serv' parameter in an AJAX request. The 'serv' value source has been altered from '#serv_for_vars' to '#serv_for_lets'. This update ensures that the correct data is passed when making the request.
pull/390/head
Aidaho 2024-07-18 15:32:51 +03:00
parent 051234b0f4
commit 74562243f3
1 changed files with 1 additions and 1 deletions

View File

@ -933,7 +933,7 @@ $( function() {
$.ajax({ $.ajax({
url: "/app/add/lets", url: "/app/add/lets",
data: { data: {
serv: $('#serv_for_vars').val(), serv: $('#serv_for_lets').val(),
lets_domain: lets_domain, lets_domain: lets_domain,
lets_email: lets_email lets_email: lets_email
}, },