fix: editBannerNoExpiry called undefined openEditInventoryModal

Replace with correct editInventoryItem() call — same function used
by all other banner edit handlers.
This commit is contained in:
dadaloop82
2026-05-11 16:55:26 +00:00
parent 38c6c5aac3
commit e3975b7d2e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -3941,7 +3941,7 @@ function editBannerNoExpiry() {
const entry = _bannerQueue[_bannerIndex];
if (!entry || entry.type !== 'no_expiry') return;
_bannerEditPending = true;
openEditInventoryModal(entry.data.id);
editInventoryItem(entry.data.id);
}
function editBannerReview() {