-
Notifications
You must be signed in to change notification settings - Fork 10
fix(project): escape Rich markup in names rendered to human output #495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 bucket-detail source_project_name not escaped, unlike buckets list The PR escapes (Refers to line 211) Was this helpful? React with 👍 or 👎 to provide feedback. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔍 Invitation-list reason not escaped, unlike member-list pending reason
The PR escapes the pending-invitation
reasonfield in_format_member_list(project.py:875), but the parallel_format_invitation_listrendersinv.get("reason", "")unescaped atsrc/keboola_agent_cli/commands/project.py:897. Both render an API-sourced invitation reason into a Rich table cell, so this is the same display-truncation bug class the PR sets out to fix, left incomplete. Additionally the alias in the same function (data.get('alias')inside[cyan]...[/cyan]atproject.py:883and in the table title atproject.py:886) is not escaped. This line is outside the PR's diff hunks so it is reported here rather than as a bug.(Refers to line 897)
Was this helpful? React with 👍 or 👎 to provide feedback.