Update actionsList after selection

This commit is contained in:
Oleg Korshul
2025-09-30 17:54:51 +03:00
parent f4910084e0
commit 489c84196f

View File

@ -175,6 +175,13 @@ function renderActionsList() {
id: e.params.data.actionId,
model: e.params.data.id
});
for (let i = 0; i < actionsList.length; i++) {
if (actionsList[i].id == e.params.data.actionId) {
actionsList[i].model = e.params.data.id;
break;
}
}
});
});
toggleScrollbarPadding();