dosubot[bot] commented on issue #31755: URL: https://github.com/apache/superset/issues/31755#issuecomment-2578347098
<!-- Answer --> The issue with the CronPicker dropdowns not rendering in the Alerts&Reports scheduling UI could be related to how the component is integrated or styled, especially since it's occurring in Firefox. The `CronPicker` component is used in the `AlertReportCronScheduler` component when the `scheduleFormat` is set to `ScheduleType.Picker` <sup>[[1]](https://github.com/apache/superset/blob/master/superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx)</sup>. Here are a few things you might want to check or try: 1. **CSS and Styling**: Ensure that the CSS styles applied to the `CronPicker` are compatible with Firefox. The component uses Ant Design's `ConfigProvider` and custom styles, which might behave differently in Firefox <sup>[[2]](https://github.com/apache/superset/blob/master/superset-frontend/src/components/CronPicker/CronPicker.tsx)</sup>. 2. **JavaScript Console**: Check the browser's console for any JavaScript errors or warnings that might indicate why the dropdowns are not rendering. 3. **Dependencies**: Verify that all dependencies, especially those related to dropdowns like `rc-dropdown` and `react-js-cron`, are correctly installed and up to date <sup>[[3]](https://github.com/apache/superset/blob/master/superset-frontend/src/features/home/Menu.test.tsx)</sup>. 4. **Browser Compatibility**: Consider testing the component in other browsers to see if the issue is specific to Firefox. This might help narrow down the problem to a browser-specific compatibility issue. If these steps don't resolve the issue, further investigation into the specific styles or scripts that might be causing the problem in Firefox would be necessary. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/eeaed0e4-9fca-45ee-8dd7-1aad87679e1c?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/eeaed0e4-9fca-45ee-8dd7-1aad87679e1c?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/eeaed0e4-9fca-45ee-8dd7-1aad87679e1c?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/eeaed0e4-9fca-45ee-8dd7-1aad87679e1c?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/eeaed0e4-9fca-45ee-8dd7-1aad87679e1c?feedback_type=hallucination) | [Other](https://app.dosu.dev/response-feedback/eeaed0e4-9fca-45ee-8dd7-1aad87679e1c?feedback_type=other)</sup> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
