Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
Fix add missing comma (#237)
Browse files Browse the repository at this point in the history
* fix topo metric transformation

* add comma.
  • Loading branch information
x22x22 authored and wu-sheng committed Dec 21, 2019
1 parent 536aed9 commit 910eedd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/components/topology/topo-detect-point.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@
@Component({
components: {
TopoInstanceDependency, ChartResponse, TopoChart
}
TopoInstanceDependency, ChartResponse, TopoChart,
},
})
export default class TopoDetectPoint extends Vue {
@State('rocketTopo') private stateTopo!: topoState;
Expand Down Expand Up @@ -176,7 +176,7 @@
.then(() => {
this.GET_QUERY({
serviceId: service.id || '',
duration: this.durationTime
duration: this.durationTime,
});
});
}
Expand Down Expand Up @@ -216,7 +216,7 @@
this.GET_INSTANCE_DEPENDENCY({
serverServiceId: this.stateTopo.selectedServiceCall.source.id,
clientServiceId: this.stateTopo.selectedServiceCall.target.id,
duration: this.durationTime
duration: this.durationTime,
});
}
}
Expand Down

0 comments on commit 910eedd

Please sign in to comment.