feat(add fe is_active logic):

This commit is contained in:
Alexander Myasoedov
2025-03-02 22:55:21 +02:00
parent 92cabf6483
commit 801a330e27
4 changed files with 28 additions and 23 deletions
+4
View File
@@ -350,6 +350,10 @@ var app = new Vue({
// If all are selected, deselect all. Otherwise, select all.
this.dataConfig.forEach(package => {
if (!package.is_active) {
package.selected = false;
return
}
package.selected = !allSelected;
});