From 79f64bccfd98664b784c8be900bab9bb736cc6bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20J=C3=A1ky?= Date: Mon, 5 Aug 2024 16:14:20 +0200 Subject: [PATCH] fix(ui): custome->custom typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Jáky --- ui/src/components/ProgressBar/index.jsx | 4 ++-- .../Findings/Vulnerabilities/TabVulnerabilityDetails.jsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/components/ProgressBar/index.jsx b/ui/src/components/ProgressBar/index.jsx index 344bd61fb..95039a6e4 100644 --- a/ui/src/components/ProgressBar/index.jsx +++ b/ui/src/components/ProgressBar/index.jsx @@ -39,7 +39,7 @@ const ProgressBar = ({ width = "100%", message = null, messageTooltipId = null, - customeTitle, + customTitle, }) => { const totalItems = itemsCompleted + itemsLeft; const percent = @@ -65,7 +65,7 @@ const ProgressBar = ({ {!icon ? (
- {!!customeTitle ? customeTitle : `${percent}%`} + {!!customTitle ? customTitle : `${percent}%`}
) : ( { itemsCompleted={score} itemsLeft={10 - score} width="130px" - customeTitle={score} + customTitle={score} /> ); };