File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React, { useState } from 'react';
22import * as C from 'components/common/Tag/Tag.styled' ;
33import * as Metrics from 'components/common/Metrics' ;
44import { Button } from 'components/common/Button/Button' ;
5- import Modal from 'components/common/Modal' ;
5+ import { Modal } from 'components/common/Modal' ;
66import getTagColor from 'components/common/Tag/getTagColor' ;
77import { RouterParamsClusterConnectConnector } from 'lib/paths' ;
88import useAppParams from 'lib/hooks/useAppParams' ;
@@ -25,9 +25,9 @@ const Overview: React.FC = () => {
2525
2626 const { running, failed } = getTaskMetrics ( tasks ) ;
2727
28- const canShowTrace = ( connector : Connector ) =>
29- connector . status . state === ConnectorState . FAILED &&
30- ! ! connector . status . trace ;
28+ const canShowTrace = ( connectorData : Connector ) =>
29+ connectorData . status . state === ConnectorState . FAILED &&
30+ ! ! connectorData . status . trace ;
3131
3232 const handleStateClick = ( ) => {
3333 if ( canShowTrace ( connector ) ) {
Original file line number Diff line number Diff line change 1- export { default } from './Modal' ;
1+ export { default as Modal } from './Modal' ;
You can’t perform that action at this time.
0 commit comments