RockteMQ-AI commented on issue #3557: URL: https://github.com/apache/rocketmq-dashboard/issues/3557#issuecomment-5554110568
**Issue Evaluation** Category: `bug` | Status: **Not Reproduced** After reviewing the current codebase (`systemAlerts.tsx`, `SystemAlertController.java`), the unacknowledged count is computed from the full `alerts` state array, not from a page-local subset. The backend `GET /api/system-alerts` returns all alerts without pagination, and the frontend computes `unackCount = alerts.filter(a => !a.acknowledged).length` from the complete list. The reported issue does not apply to the current implementation. If pagination is added in the future, the count should be moved to a server-side field to remain accurate. --- *Automated evaluation by @RockteMQ-AI* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
