From cf10510f121219133f2073303c74e40b1213145e Mon Sep 17 00:00:00 2001 From: "Maxim.Kolmakov" Date: Tue, 14 Nov 2023 16:59:27 +0100 Subject: [PATCH] Don't log branches --- dashboard/new-dashboard/src/components/common/BranchSelect.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/dashboard/new-dashboard/src/components/common/BranchSelect.vue b/dashboard/new-dashboard/src/components/common/BranchSelect.vue index 7ed9affd..44abeae9 100644 --- a/dashboard/new-dashboard/src/components/common/BranchSelect.vue +++ b/dashboard/new-dashboard/src/components/common/BranchSelect.vue @@ -182,7 +182,6 @@ function createItems(configurator?: DimensionConfigurator) { if (configurator == undefined) { return [] } - console.log(configurator.values.value) const values = (configurator.values.value as string[]).sort((a, b) => { if (configurator.selected.value?.includes(b)) return 1 if (configurator.selected.value?.includes(a)) return -1