feat(listviews): SIP-34 Bulk Select (#10298)

This commit is contained in:
ʈᵃᵢ
2020-07-16 16:07:49 -07:00
committed by GitHub
parent 2b061fc64b
commit 0eee6785a8
18 changed files with 592 additions and 288 deletions

View File

@@ -19,7 +19,7 @@
import React from 'react';
import { t } from '@superset-ui/translation';
import Button from '../../components/Button';
import Button, { ButtonProps } from '../../components/Button';
const NO_OP = () => undefined;
@@ -47,7 +47,7 @@ const RunQueryActionButton = ({
const shouldShowStopBtn =
!!queryState && ['running', 'pending'].indexOf(queryState) > -1;
const commonBtnProps = {
const commonBtnProps: ButtonProps = {
bsSize: 'small',
bsStyle: btnStyle,
disabled: !dbId,