From d3e7c7b68ca20d6d623c5a23fd547a30203b00a3 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Tue, 15 Jul 2025 19:53:54 +0200 Subject: [PATCH] fix: lint --- frontend/src/components/ProgressBar.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/ProgressBar.vue b/frontend/src/components/ProgressBar.vue index 2cb9474b..bd4f75d4 100644 --- a/frontend/src/components/ProgressBar.vue +++ b/frontend/src/components/ProgressBar.vue @@ -192,7 +192,8 @@ export default { style["position"] = "absolute"; style["top"] = "0"; style["height"] = "100%"; - (style["min-height"] = this.size_px + "px"), (style["z-index"] = "-1"); + ((style["min-height"] = this.size_px + "px"), + (style["z-index"] = "-1")); } return style;