lyndsiWilliams commented on a change in pull request #17944: URL: https://github.com/apache/superset/pull/17944#discussion_r787302981
########## File path: superset-frontend/src/SqlLab/components/QueryTable/index.tsx ########## @@ -29,133 +28,166 @@ import Button from 'src/components/Button'; import { fDuration } from 'src/modules/dates'; import Icons from 'src/components/Icons'; import { Tooltip } from 'src/components/Tooltip'; +import { Query } from 'src/SqlLab/types'; +import ModalTrigger from 'src/components/ModalTrigger'; +import rootReducer from 'src/SqlLab/reducers'; import ResultSet from '../ResultSet'; -import ModalTrigger from '../../../components/ModalTrigger'; import HighlightedSql from '../HighlightedSql'; import { StaticPosition, verticalAlign, StyledTooltip } from './styles'; -const propTypes = { - columns: PropTypes.array, - actions: PropTypes.object, - queries: PropTypes.array, - onUserClicked: PropTypes.func, - onDbClicked: PropTypes.func, - displayLimit: PropTypes.number.isRequired, -}; -const defaultProps = { - columns: ['started', 'duration', 'rows'], - queries: [], - onUserClicked: () => {}, - onDbClicked: () => {}, -}; +// Acquire redux rootstate type, to be used in useSelector +type RootState = ReturnType<typeof rootReducer>; Review comment: Where is `ReturnType` defined? -- 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