fix: speedup table reload by updating only changed statuses

it has been found that on big (>100) repos it starts lagging on reload.
This commit adds guard to avoid updating rows whose package statuses
were not changed
This commit is contained in:
2026-02-18 22:56:50 +02:00
parent bbf9e38fda
commit 5266f54257
2 changed files with 8 additions and 5 deletions

View File

@@ -87,7 +87,7 @@
};
});
updateTable(table, payload);
updateTable(table, payload, row => row.timestamp);
table.bootstrapTable("hideLoading");
},
onFailure,