btlqql opened a new issue, #2493: URL: https://github.com/apache/rocketmq-dashboard/issues/2493
## Problem The Topic regex allows `/` and `*` but rejects `%` and `|` which RocketMQ supports; Group forces the first character to be a letter; length limits do not match RocketMQ's Topic 127 / Group 120. Location: `web/src/utils/resourceCsvImport.ts`. ## Expected behavior Add a shared name validator consistent with RocketMQ's TopicValidator (`^[%|a-zA-Z0-9_-]+$`) with separate Topic/Group max lengths, reused by both CSV Topic and Group import. ## Verification Cover `%`, `|`, digit-leading groups, `/`, `*`, and the 127/128 and 120/121 length boundaries. Note: different from the open CSV control-character issue #2144. -- 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]
