This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 5f55d94 style: rename label 'table name'->'dataset name' (#11126)
5f55d94 is described below
commit 5f55d94b9b6481e0651d6c4f44442100c7d0f49c
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Thu Oct 1 15:13:01 2020 -0700
style: rename label 'table name'->'dataset name' (#11126)
---
superset-frontend/src/datasource/DatasourceEditor.jsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/superset-frontend/src/datasource/DatasourceEditor.jsx
b/superset-frontend/src/datasource/DatasourceEditor.jsx
index bae7596..dd7cd72 100644
--- a/superset-frontend/src/datasource/DatasourceEditor.jsx
+++ b/superset-frontend/src/datasource/DatasourceEditor.jsx
@@ -653,14 +653,14 @@ class DatasourceEditor extends React.PureComponent {
/>
<Field
fieldKey="table_name"
- label={t('table name')}
+ label={t('dataset name')}
control={
<TextControl
controlId="table_name"
onChange={table => {
this.onDatasourcePropChange('table_name', table);
}}
- placeholder={t('Type table name')}
+ placeholder={t('dataset name')}
/>
}
/>