This commit is contained in:
Qiuxia Fan 2022-03-21 14:49:10 +08:00
commit fc898d663e
2 changed files with 2 additions and 2 deletions

View File

@ -33,6 +33,6 @@ defineProps({
});
const dashboardStore = useDashboardStore();
const isSankey = ref<boolean>(
[EntityType[2].value, EntityType[4].value].includes(dashboardStore.entity)
[EntityType[2].value, EntityType[3].value].includes(dashboardStore.entity)
);
</script>

View File

@ -207,7 +207,7 @@ async function getTopology(id: string) {
Number(depth.value)
);
break;
case EntityType[4].value:
case EntityType[3].value:
resp = await topologyStore.getInstanceTopology();
break;
}