From 676b52740b15cf9e50e353f5b7474a2409443f00 Mon Sep 17 00:00:00 2001 From: Mohamed Awnallah <69568555+mohamedawnallah@users.noreply.github.com> Date: Tue, 4 Jun 2024 03:48:44 +0300 Subject: [PATCH 1/4] global_report: handle maximum recursive updates (#802) In this commit, we handle the maximum recursive updates issue that happens when the filter value acorss the global report gets populated either through World Map, Time Series, TreeMap, or the Table data vizs. --- src/components/tables/AggregatedAlarmsTable.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/tables/AggregatedAlarmsTable.vue b/src/components/tables/AggregatedAlarmsTable.vue index 683f2ef3..85bfe856 100644 --- a/src/components/tables/AggregatedAlarmsTable.vue +++ b/src/components/tables/AggregatedAlarmsTable.vue @@ -103,7 +103,7 @@ const emit = defineEmits(['country-clicked', 'asn-name-key-clicked', { } }]) -const { rows, filterFct, filterTable, getCellValue, dateHourShift, setRows } = commonTable(props, { emit }) +const { rows, dateHourShift, setRows } = commonTable(props, { emit }) const columns = ref(ALARMS_INFO[props.selectedTableDataSource].alarm_types[props.selectedTableAlarmType].metadata.table_columns) const aggregatedColumns = ref(ALARMS_INFO[props.selectedTableDataSource].alarm_types[props.selectedTableAlarmType].metadata.table_aggregated_columns) @@ -349,7 +349,7 @@ watch(() => props.selectedTableAlarmType, () => {