villebro commented on a change in pull request #14863:
URL: https://github.com/apache/superset/pull/14863#discussion_r643935343
##########
File path: superset-frontend/src/datasource/DatasourceEditor.jsx
##########
@@ -414,13 +415,15 @@ class DatasourceEditor extends React.PureComponent {
type: col.type,
groupby: true,
filterable: true,
+ is_dttm: col.is_dttm,
});
results.added.push(col.name);
- } else if (currentCol.type !== col.type) {
+ } else if (currentCol.type !== col.type || col.is_dttm) {
Review comment:
Should we make this more specific?
```js
} else if (currentCol.type !== col.type || currentCol.is_dtm !==
col.is_dttm) {
```
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]