Merge branch 'ent-12569-boton-para-agregar-item-en-credential-boxes-no-hace-nada' into 'develop'

Ent 12569 Botón para agregar item en Credential boxes no hace nada

See merge request artica/pandorafms!6728
This commit is contained in:
Daniel Rodriguez 2024-01-18 08:14:30 +00:00
commit 947f6511d5
1 changed files with 3 additions and 3 deletions

View File

@ -521,7 +521,7 @@ $(document).ready (function () {
function (data) { function (data) {
$(".white-box-content").html(data); $(".white-box-content").html(data);
$("#submit-add").click(function (e) { $("#button-add").click(function (e) {
add_credential_boxes(); add_credential_boxes();
}); });
@ -550,7 +550,7 @@ $(document).ready (function () {
$(".white-box-content").html(data2); $(".white-box-content").html(data2);
// Insert credential // Insert credential
$("#submit-add").click(function (e) { $("#button-add").click(function (e) {
save_credential_boxes(); save_credential_boxes();
}) })
}, },
@ -609,7 +609,7 @@ $(document).ready (function () {
function (data) { function (data) {
$(".white-box-content").html(data); $(".white-box-content").html(data);
$("#submit-update").click(function (e) { $("#button-update").click(function (e) {
update_credential_boxes(datas); update_credential_boxes(datas);
}); });
}, },