dosubot[bot] commented on issue #32785: URL: https://github.com/apache/superset/issues/32785#issuecomment-2742625215
<!-- Answer --> The issue you're encountering with the login form still using Bootstrap CSS version 3.4.1 in Apache Superset 5.0.0rc1, despite the changes in pull request #29844, suggests that the fix might not have been fully implemented or there might be some residual references to the old Bootstrap CSS. To address this, you can check the following: 1. **CSS Imports**: Verify if there are any remaining imports of Bootstrap CSS in the codebase, particularly in the `index.less` file located at `superset-frontend/src/assets/stylesheets/less/index.less`. This file previously included Bootstrap using the line `@import '~bootstrap/less/bootstrap.less';` <sup>[[1]](https://github.com/apache/superset/blob/master/superset-frontend/src/assets/stylesheets/less/index.less)</sup>. 2. **Static Asset Configuration**: Ensure that the static asset configuration, particularly the Webpack setup, is correctly updated to exclude Bootstrap CSS. The Webpack configuration handles CSS files and might still be including Bootstrap if not properly updated <sup>[[2]](https://github.com/apache/superset/blob/master/superset-frontend/webpack.config.js)</sup>. 3. **Conditional Inclusions**: Check for any conditional logic in the codebase that might be including Bootstrap CSS specifically for the login page. This could be in the form of conditional imports or configurations that were not fully removed. By reviewing these areas, you might identify where the outdated Bootstrap CSS is still being referenced and make the necessary adjustments to remove it completely. <!-- 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/9a6f7085-da81-4deb-926d-08a7be818cc1?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/9a6f7085-da81-4deb-926d-08a7be818cc1?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/9a6f7085-da81-4deb-926d-08a7be818cc1?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/9a6f7085-da81-4deb-926d-08a7be818cc1?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/9a6f7085-da81-4deb-926d-08a7be818cc1?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/9a6f7085-da81-4deb-926d-08a7be818cc1?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/9a6f7085-da81-4deb-926d-08a7be818cc1?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]
