Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
"Since" and "Up to" inputs are not working. It is a Web UI issue. It seems like the date picker input fields have missing name so the values are not passed to the form. I think it is related to the react mount.
As you can see the selected date are missing and not submitted
# Form Data
authenticity_token: <token>
report_template_report[generate_at]: 2021-04-23 14:56:00
report_template_report[send_mail]: 0
report_template_report[mail_to]: root.com
report_template_report[format]: csv
report_template_report[input_values][5][value]: warning
report_template_report[input_values][3][value]: all
report_template_report[input_values][4][value]: yes
commit: Submit
Steps to Reproduce:
1. Web UI -> Monitor -> Report Template.
2. Click generate "Host - Applied Errata"
3. Select date range for Since and "Up to" then click submit
Actual results:
Data outside of the date range is reported
Expected results:
Report should only include data within the specified date range.
Additional info:
Tested on Satellite 6.9, the date inputs are passed properly. It seems that it has been fixed by the following commit.
commit c890814017481c06c9293bc09685846f7e2634f6
Author: Ondřej Ezr <oezr>
Date: Thu Oct 8 16:01:26 2020 +0200
Fixes #30934 - improve template invocation_form inputs
Using `react_form_input` helper, that was introduced in 810504a13c
for rendering template invocation react inputs.
Hides all the input type implementations into a one helper method
to hide the implementation differences between React and Rails implemented inputs.
As mentioned in the description, the behavior observed should be resolved in Satellite 6.9; therefore, closing the bugzilla for now. If there are concerns, please feel free to re-open. Thanks!
Description of problem: "Since" and "Up to" inputs are not working. It is a Web UI issue. It seems like the date picker input fields have missing name so the values are not passed to the form. I think it is related to the react mount. As you can see the selected date are missing and not submitted # Form Data authenticity_token: <token> report_template_report[generate_at]: 2021-04-23 14:56:00 report_template_report[send_mail]: 0 report_template_report[mail_to]: root.com report_template_report[format]: csv report_template_report[input_values][5][value]: warning report_template_report[input_values][3][value]: all report_template_report[input_values][4][value]: yes commit: Submit Steps to Reproduce: 1. Web UI -> Monitor -> Report Template. 2. Click generate "Host - Applied Errata" 3. Select date range for Since and "Up to" then click submit Actual results: Data outside of the date range is reported Expected results: Report should only include data within the specified date range. Additional info: Tested on Satellite 6.9, the date inputs are passed properly. It seems that it has been fixed by the following commit. commit c890814017481c06c9293bc09685846f7e2634f6 Author: Ondřej Ezr <oezr> Date: Thu Oct 8 16:01:26 2020 +0200 Fixes #30934 - improve template invocation_form inputs Using `react_form_input` helper, that was introduced in 810504a13c for rendering template invocation react inputs. Hides all the input type implementations into a one helper method to hide the implementation differences between React and Rails implemented inputs.