GitHub user dosubot[bot] added a comment to the discussion: [mixed chart] Secondary y-axis title position is misplaced
<!-- Greeting --> Hey there, @katrina-chen! 👋 I'm here to assist you with any bugs, questions, or becoming a contributor. <!-- Answer --> The Superset 3.1.0 release notes or changelog do not explicitly mention the inclusion of the fix from PR #25168. To apply the fix manually, you can follow these steps: 1. **Review the Pull Request**: Visit the [PR #25168](https://github.com/apache/superset/pull/25168) on GitHub to see the specific code changes made to address the issue. 2. **Apply Changes Locally**: - Clone the Superset repository if you haven't already: ```bash git clone https://github.com/apache/superset.git cd superset ``` - Check out the branch or commit from the pull request: ```bash git fetch origin pull/25168/head:pr-25168 git checkout pr-25168 ``` - Manually copy the changes from the PR into your local Superset installation. This might involve editing specific files related to the Y-axis title positioning. 3. **Test the Changes**: - Use the development server to see changes in real-time: ```bash npm run dev-server ``` - Alternatively, use Docker Compose for development: ```bash docker compose -f docker-compose.yml up ``` - Run tests to ensure everything is working correctly: ```bash scripts/tests/run.sh ``` These steps should help you apply the fix to your local Superset installation and verify that the secondary Y-axis title is positioned correctly. <!-- 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/2d9e52c0-fd06-487c-b329-615783b3ecff?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/2d9e52c0-fd06-487c-b329-615783b3ecff?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/2d9e52c0-fd06-487c-b329-615783b3ecff?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/2d9e52c0-fd06-487c-b329-615783b3ecff?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/2d9e52c0-fd06-487c-b329-615783b3ecff?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/2d9e52c0-fd06-487c-b329-615783b3ecff?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/2d9e52c0-fd06-487c-b329-615783b3ecff?feedback_type=other)</sup> GitHub link: https://github.com/apache/superset/discussions/32992#discussioncomment-12708884 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
