From 5bf4a8a0bdae2ef427ab73d73de93b9fa84b45bb Mon Sep 17 00:00:00 2001 From: Oj Date: Thu, 9 Dec 2021 18:25:26 +0000 Subject: [PATCH] [Splash > UI] Add current/total to text --- src/splash/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/splash/index.html b/src/splash/index.html index 9066141..5162900 100644 --- a/src/splash/index.html +++ b/src/splash/index.html @@ -71,6 +71,7 @@ console.log('onStateUpdate', progress); text.textContent = status.replaceAll('-', ' '); + if (current) text.textContent += ` (${current}/${total})`; if (progress) { barContainer.style.display = 'block';