From c72ee0a6c4a8a9e8528cab0a3f01256ec9c7f21b Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 30 Dec 2022 15:41:41 +0900 Subject: [PATCH] remove console.log --- packages/frontend/src/components/form/range.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/frontend/src/components/form/range.vue b/packages/frontend/src/components/form/range.vue index cdaecb84c..7092d56e2 100644 --- a/packages/frontend/src/components/form/range.vue +++ b/packages/frontend/src/components/form/range.vue @@ -69,7 +69,6 @@ const calcThumbPosition = () => { thumbPosition.value = 0; } else { thumbPosition.value = (containerEl.value.offsetWidth - getThumbWidth()) * steppedRawValue.value; - console.log(containerEl.value.offsetWidth, getThumbWidth()); } }; watch([steppedRawValue, containerEl], calcThumbPosition);