This is an automated email from the ASF dual-hosted git repository. beto pushed a commit to branch fix-dataset-default-url-description in repository https://gitbox.apache.org/repos/asf/superset.git
commit ec70a9c20de1c449de1847cba5629bde14187454 Author: Beto Dealmeida <[email protected]> AuthorDate: Wed Oct 15 17:59:12 2025 -0400 fix(dataset): render default URL description properly in settings The default URL field description was displaying escaped HTML tags as plain text instead of rendering them. Replaced HTML string with proper React JSX using Typography.Text component to display the example URL path in code format. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> --- .../components/DatasourceEditor/DatasourceEditor.jsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/superset-frontend/src/components/Datasource/components/DatasourceEditor/DatasourceEditor.jsx b/superset-frontend/src/components/Datasource/components/DatasourceEditor/DatasourceEditor.jsx index a5ad47aefa..04f4f18ef3 100644 --- a/superset-frontend/src/components/Datasource/components/DatasourceEditor/DatasourceEditor.jsx +++ b/superset-frontend/src/components/Datasource/components/DatasourceEditor/DatasourceEditor.jsx @@ -1019,10 +1019,16 @@ class DatasourceEditor extends PureComponent { <Field fieldKey="default_endpoint" label={t('Default URL')} - description={t( - `Default URL to redirect to when accessing from the dataset list page. - Accepts relative URLs such as <span style=„white-space: nowrap;”>/superset/dashboard/{id}/</span>`, - )} + description={ + <> + {t( + 'Default URL to redirect to when accessing from the dataset list page. Accepts relative URLs such as', + )}{' '} + <Typography.Text code> + /superset/dashboard/{'{id}'}/ + </Typography.Text> + </> + } control={<TextControl controlId="default_endpoint" />} /> <Field
