diff --git a/report-viewer/src/components/ClusterGraph.vue b/report-viewer/src/components/ClusterGraph.vue index 4b6070c27..fcb0029d1 100644 --- a/report-viewer/src/components/ClusterGraph.vue +++ b/report-viewer/src/components/ClusterGraph.vue @@ -91,7 +91,6 @@ const xPadding = computed(() => { const widths = labels.value.map((label) => label.length * avgCharacterLength) const maxWidth = Math.max(...widths) - console.log(maxWidth) // Makes sure there is always space to display a name but the padding does not get too big return Math.max(Math.min(200, maxWidth), 40) })