OpenHands icon indicating copy to clipboard operation
OpenHands copied to clipboard

fix: url repo encode

Open vinisdl opened this issue 7 months ago • 0 comments

  • [ ] 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 title prop from: image

    title={taskGroup.title}
    

    to: image

    title={decodeURIComponent(taskGroup.title)}
    

Why:

  • Task group titles were being passed as URL-encoded strings, causing display issues (e.g., %20 instead of spaces).
  • decodeURIComponent ensures 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:

vinisdl avatar May 26 '25 18:05 vinisdl