OpenHands
OpenHands copied to clipboard
fix: url repo encode
- [ ] This change is worth documenting at https://docs.all-hands.dev/
- [ ] Include this change in the Release Notes. If checked, you must provide an end-user friendly description for your change below
End-user friendly description of the problem this fixes or functionality this introduces. Claro! Aqui está um exemplo de texto em inglês para o Pull Request (PR):
🛠️ Decode Encoded Task Group Titles
What was changed:
-
Updated the
titleprop from:title={taskGroup.title}to:
title={decodeURIComponent(taskGroup.title)}
Why:
- Task group titles were being passed as URL-encoded strings, causing display issues (e.g.,
%20instead of spaces). decodeURIComponentensures the title is properly rendered for the user.
Impact:
- UI improvement for task group titles.
- No breaking changes expected.
Summarize what the PR does, explaining any non-trivial design decisions.
Link of any specific issues this addresses: