Skip to content

Commit

Permalink
Add missing value affectation for default updated field
Browse files Browse the repository at this point in the history
  • Loading branch information
pampletousse authored and pampletousse committed Nov 22, 2023
1 parent 7645c62 commit 81790b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pod/video/static/js/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function bulkUpdate() {
value = CKEDITOR.instances[element.id].getData();
break;
default:
document.getElementById("id_"+element.getAttribute("name")).value;
value = document.getElementById("id_"+element.getAttribute("name")).value;
}
formData.append(element.getAttribute("name"), value);
}
Expand Down

0 comments on commit 81790b3

Please sign in to comment.