From cd1d89b2b1fddf1d0228f2c8a3581f7ab5c3046a Mon Sep 17 00:00:00 2001 From: Phillip Kelley-Dotson Date: Fri, 30 Oct 2020 13:20:10 -0700 Subject: [PATCH] fix: import for moment in ActivityTable (#11506) --- superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx b/superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx index dc44347461..ecaddf3fca 100644 --- a/superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx +++ b/superset-frontend/src/views/CRUD/welcome/ActivityTable.tsx @@ -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';