RockteMQ-AI commented on issue #4742:
URL: 
https://github.com/apache/rocketmq-dashboard/issues/4742#issuecomment-5760930062

   **Issue Evaluation**
   
   Category: `bug` | Status: **Confirmed**
   
   The reported issue has been verified against the current codebase.
   
   **Root Cause:** `PROTOCOL_MAP` in `web/src/constants/theme.ts` is keyed by 
`REMOTING` / `GRPC` (uppercase), but the server serializes the `Protocol` enum 
by its Java enum name — `gRPC` / `Remoting` (mixed case). The lookup never 
matches, so the render falls back to `{ labelKey: protocol, color: 'default' 
}`. The text displays correctly (via `t(protocol)` echo), but the intended 
color coding (green for gRPC, geekblue for Remoting) is lost.
   
   **Impact:** Consumer Group page client list shows all protocol tags in 
default gray instead of their intended distinct colors, reducing visual clarity.
   
   **Severity:** Low — cosmetic issue, no data loss or functional breakage.
   
   **Note:** This is the same class of issue as #4733 (filter-mode codes) — 
mock data and frontend constants drifted from the actual API contract.
   
   PR #4741 from the author addresses this. Maintainers may proceed with 
reviewing that PR directly.
   
   ---
   *Automated evaluation by github-manager-bot*


-- 
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]

Reply via email to