This is an automated email from the ASF dual-hosted git repository. hugh pushed a commit to branch hugh/change-ds-bugfixes in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
commit c5ce2322479d3f812b87a8557229ac28305cc33c Author: hughhhh <[email protected]> AuthorDate: Mon Dec 21 18:06:46 2020 -0500 change messaging for the warning modal --- superset-frontend/src/datasource/ChangeDatasourceModal.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/superset-frontend/src/datasource/ChangeDatasourceModal.tsx b/superset-frontend/src/datasource/ChangeDatasourceModal.tsx index 9c387cd..e6de5ed 100644 --- a/superset-frontend/src/datasource/ChangeDatasourceModal.tsx +++ b/superset-frontend/src/datasource/ChangeDatasourceModal.tsx @@ -76,8 +76,7 @@ const TABLE_COLUMNS = [ ].map(col => ({ accessor: col, Header: col })); const CHANGE_WARNING_MSG = t( - 'Changing the dataset may break the chart if the chart relies ' + - 'on columns or metadata that does not exist in the target dataset', + 'Warning changing the dataset may break the chart if the metadata does not exist.' ); const emptyRequest = {
