Skip to content

Commit

Permalink
fix unit (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fine0830 authored Dec 9, 2024
1 parent f5cfb03 commit 2fca7a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/dashboard/related/ebpf/components/EBPFStack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ limitations under the License. -->
}
const { type } = ebpfStore.analyzeTrees[0];
if ([JFREventType.LOCK].includes(type)) {
return `<div class="mb-5">Duration: ${item.dumpCount} ms</div>`;
return `<div class="mb-5">Duration: ${item.dumpCount} ns</div>`;
}
if (type === JFREventType.EXECUTION_SAMPLE) {
return `<div class="mb-5">Count: ${item.dumpCount}</div>`;
Expand Down

0 comments on commit 2fca7a7

Please sign in to comment.