dosubot[bot] commented on issue #34082: URL: https://github.com/apache/superset/issues/34082#issuecomment-3043644019
<!-- Answer --> This behavior is controlled by the Table visualization's frontend code, not by a Conda-specific setting or a config file. To disable HTML rendering (and prevent truncation of values with angle brackets), you need to edit the file `superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx` and set the `allowRenderHtml` property to `false` instead of `true` in the TableChart component. This will force all table cells to render as plain text, regardless of their content ([reference](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx)). After making this change, rebuild the frontend assets. In your Superset environment (even if installed via Conda), go to the `superset-frontend` directory and run: ```bash npm ci npm run build ``` or use the provided script: ```bash ./js_build.sh ``` This will update the frontend with your change. No extra steps are needed for Conda installationsāthe frontend build process is the same as with any other install method ([reference](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/js_build.sh)). There is currently no user-facing toggle for this behavior in the UI or config files. If you want this to be configurable per chart or column in the future, you might consider requesting it as a feature. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/51bd1b8d-2e68-488b-ad6a-d79e0a097a1f?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/51bd1b8d-2e68-488b-ad6a-d79e0a097a1f?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/51bd1b8d-2e68-488b-ad6a-d79e0a097a1f?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/51bd1b8d-2e68-488b-ad6a-d79e0a097a1f?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/51bd1b8d-2e68-488b-ad6a-d79e0a097a1f?feedback_type=hallucination) | [Report š](https://app.dosu.dev/response-feedback/51bd1b8d-2e68-488b-ad6a-d79e0a097a1f?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/51bd1b8d-2e68-488b-ad6a-d79e0a097a1f?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [! [Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/34082) -- 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: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org