diff --git a/public/pages/DetectorsList/containers/ConfirmActionModals/utils/helpers.tsx b/public/pages/DetectorsList/containers/ConfirmActionModals/utils/helpers.tsx index 6bc78193..55a2a0a5 100644 --- a/public/pages/DetectorsList/containers/ConfirmActionModals/utils/helpers.tsx +++ b/public/pages/DetectorsList/containers/ConfirmActionModals/utils/helpers.tsx @@ -27,7 +27,7 @@ const getNames = (detectors: DetectorListItem[]) => { href={`${PLUGIN_NAME}#/detectors/${detectors[i].id}`} target="_blank" > - {detectors[i].name} /> + {detectors[i].name} ), }); @@ -49,7 +49,7 @@ const getNamesAndMonitors = ( href={`${PLUGIN_NAME}#/detectors/${detectors[i].id}`} target="_blank" > - {detectors[i].name} /> + {detectors[i].name} ), Monitor: ( @@ -57,7 +57,7 @@ const getNamesAndMonitors = ( href={`${getAlertingMonitorListLink()}/${relatedMonitor.id}`} target="_blank" > - {relatedMonitor.name} /> + {relatedMonitor.name} ), }); @@ -68,7 +68,7 @@ const getNamesAndMonitors = ( href={`${PLUGIN_NAME}#/detectors/${detectors[i].id}`} target="_blank" > - {detectors[i].name} /> + {detectors[i].name} ), Monitor: '-', @@ -95,7 +95,7 @@ const getNamesAndMonitorsAndStates = ( href={`${PLUGIN_NAME}#/detectors/${detectors[i].id}`} target="_blank" > - {detectors[i].name} /> + {detectors[i].name} ), Monitor: ( @@ -103,7 +103,7 @@ const getNamesAndMonitorsAndStates = ( href={`${getAlertingMonitorListLink()}/${relatedMonitor.id}`} target="_blank" > - {relatedMonitor.name} /> + {relatedMonitor.name} ), Running: {isRunning ? 'Yes' : 'No'},