Commit 6290dd538dc2bbaef6a464cd57411c9a4ba2e51b
1 parent
a3955a1c
fix: 修复变更configurationNodeId导致告警列表无法获取告警数据
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -33,7 +33,7 @@ const initOptions = reactive<{ | @@ -33,7 +33,7 @@ const initOptions = reactive<{ | ||
33 | const { t } = useTranslation() | 33 | const { t } = useTranslation() |
34 | const fetchAlarmListConfig = computed(() => { | 34 | const fetchAlarmListConfig = computed(() => { |
35 | return contentDataStore?.contentData.find((item) => { | 35 | return contentDataStore?.contentData.find((item) => { |
36 | - return props.config.cellInfo?.id === item.id | 36 | + return props.config.cellInfo?.id === item.configurationNodeId |
37 | }) | 37 | }) |
38 | }) | 38 | }) |
39 | 39 |