fix: import for moment in ActivityTable (#11506)

This commit is contained in:
Phillip Kelley-Dotson 2020-10-30 13:20:10 -07:00 committed by GitHub
parent 29554a9f02
commit cd1d89b2b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,13 +17,13 @@
* under the License.
*/
import React, { useEffect, useState } from 'react';
import moment from 'antd/node_modules/moment';
import moment from 'moment';
import { styled, t } from '@superset-ui/core';
import { reject } from 'lodash';
import ListViewCard from 'src/components/ListViewCard';
import { addDangerToast } from 'src/messageToasts/actions';
import SubMenu from 'src/components/Menu/SubMenu';
import { reject } from 'lodash';
import { getRecentAcitivtyObjs, mq } from '../utils';
import EmptyState from './EmptyState';