Fix weird bug

This commit is contained in:
zandercymatics 2024-06-27 15:15:37 -06:00
parent 017ffcad88
commit 2cde874356
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -426,6 +426,10 @@ function initializeWidgetOnList(list, parentId) {
let statusSelect = document.getElementById('id_status');
function moveStatusChangelog(actionNeededReasonFormGroup, statusSelect) {
if (!actionNeededReasonFormGroup || !statusSelect) {
return;
}
let flexContainer = actionNeededReasonFormGroup.querySelector('.flex-container');
let statusChangelog = document.getElementById('dja-status-changelog');