Aias00 opened a new issue, #911: URL: https://github.com/apache/rocketmq-dashboard/issues/911
### Description `listConsumerGroups()` in mock mode filters consumer groups with the raw `search` value. Unlike topic search, it does not trim the input first, so a UI search value such as ` GID_order_service ` fails to match an existing group. ### Location `web/src/services/consumerService.ts` ### Impact The Consumer Group page can show an empty result when users paste or type a valid group name with leading or trailing spaces. This makes the Studio metadata list filtering inconsistent with Topic search and can hide existing consumer groups. ### Suggested fix Trim the search text before filtering. Blank search text should be ignored and return the full list, matching `topicService.listTopics()` behavior. Add mock-service regression tests for trimmed and blank search values. ### Scope RocketMQ Studio Track 1 / Consumer Group metadata management. -- 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]
