From d8882abb4aa10e30b8ed4af19d2e425e152b58b7 Mon Sep 17 00:00:00 2001 From: vikhy-aws <191836418+vikhy-aws@users.noreply.github.com> Date: Thu, 2 Jan 2025 16:16:13 -0800 Subject: [PATCH] fix: fix improper import causing acknowledgement of alerts to fail Signed-off-by: vikhy-aws <191836418+vikhy-aws@users.noreply.github.com> --- .../AcknowledgeAlertsModal/AcknowledgeAlertsModal.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/pages/Dashboard/components/AcknowledgeAlertsModal/AcknowledgeAlertsModal.js b/public/pages/Dashboard/components/AcknowledgeAlertsModal/AcknowledgeAlertsModal.js index e9dae71f..93f1bb21 100644 --- a/public/pages/Dashboard/components/AcknowledgeAlertsModal/AcknowledgeAlertsModal.js +++ b/public/pages/Dashboard/components/AcknowledgeAlertsModal/AcknowledgeAlertsModal.js @@ -42,10 +42,10 @@ import { MAX_ALERT_COUNT } from '../../utils/constants'; import { DEFAULT_PAGE_SIZE_OPTIONS } from '../../../Monitors/containers/Monitors/utils/constants'; import DashboardControls from '../DashboardControls'; import ContentPanel from '../../../../components/ContentPanel'; -import { appendCommentsAction, queryColumns } from '../../utils/tableUtils'; +import { queryColumns } from '../../utils/tableUtils'; import DashboardEmptyPrompt from '../DashboardEmptyPrompt'; import { getAlertsFindingColumn } from '../FindingsDashboard/findingsUtils'; -import { getDataSourceId, getIsCommentsEnabled } from '../../../utils/helpers'; +import { appendCommentsAction, getDataSourceId, getIsCommentsEnabled } from '../../../utils/helpers'; export const DEFAULT_NUM_MODAL_ROWS = 10;