From dd2e58cbfc7a34169c3b8d43ada285180798e933 Mon Sep 17 00:00:00 2001 From: Alex | Kronox Date: Thu, 7 Dec 2023 13:05:04 +0100 Subject: [PATCH] fix lint issue --- report-viewer/src/utils/ColorUtils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/report-viewer/src/utils/ColorUtils.ts b/report-viewer/src/utils/ColorUtils.ts index 641801b0d..ac5cdabe8 100644 --- a/report-viewer/src/utils/ColorUtils.ts +++ b/report-viewer/src/utils/ColorUtils.ts @@ -97,7 +97,6 @@ const graphColors = { contentBorder: 'rgb(127, 15, 24)', pointFill: `rgba(${graphRGB.red}, ${graphRGB.green}, ${graphRGB.blue}, 1)`, additionalLine: computed(() => { - const alpha = 0.3 return store().uiState.useDarkMode ? `rgba(200, 200, 200, 0.3)` : `rgba(0, 0, 0, 0.5)` }), contentFillAlpha(alpha: number) {