RockteMQ-AI commented on issue #4238: URL: https://github.com/apache/rocketmq-dashboard/issues/4238#issuecomment-5638759022
Thanks for the detailed report — I was able to confirm this in web/src/pages/cluster/clients.tsx. handleNameserverChange resets connections/clusterFilter/selectedConnection but not columnFilters, and the clusterName/type/protocol/language columns use uncontrolled antd filters (no filteredValue), so both antd's internal filter state and the export mirror survive a NameServer switch. This matches the behavior you describe: filtered-out rows and a disabled Export button on the new endpoint. The fix is to reset columnFilters when the endpoint changes and make the columns controlled via filteredValue so the table and export stay in sync. We'll review the fix in #4240. -- 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]
