-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Various PF fixes #19074
Various PF fixes #19074
Conversation
The FormGroup has a fieldId but we never set the id on the FormSelect.
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.
This looks good by and large, but I'd like to at least discuss the hardcoded "Fedora" string. Maybe it's okay :-)
pkg/systemd/reporting.jsx
Outdated
@@ -226,6 +226,7 @@ class BusWorkflowRow extends React.Component { | |||
this.setState({ message: _("Waiting for input…") }); | |||
const task_prompt = client.proxy("org.freedesktop.reportd.Task.Prompt", object_path); | |||
const props = { | |||
title: _("Report to Fedora?"), |
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.
Is this justified? Shouldn't "Fedora" come from some metadata of the backend?
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.
Oh good point! I think the text comes from reportd/taskd so this is 💯 wrong.
More meh, we should maybe just fix the UX here. You can't report without an API key. So maybe So I'll drop this commit here, let's focus on making something better and adding a |
This was renamed in PF5 in c03a01918b2d947d297e.
Deprecations / missing title found by making extranous
console.error
fail. Split up from #19053