From 5b293c4105cd4a1068810fe81828f9c66700ba43 Mon Sep 17 00:00:00 2001 From: Timo <60073321+FrissBrot@users.noreply.github.com> Date: Fri, 8 Nov 2024 13:15:48 +0100 Subject: [PATCH] Fixed issu #1: Pause/Stop is not displayed correctly --- chrome/popup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/popup.js b/chrome/popup.js index 89d5543..56753a6 100644 --- a/chrome/popup.js +++ b/chrome/popup.js @@ -38,7 +38,7 @@ function updateRecordingLabel(bool){ action: "guideLenght" }, (response) => { if(response.stepCount !== 0) startLabel = "Resume"; - toggleRecordingBtn.textContent = bool ? "Pause/Stop" : startLabel; + toggleRecordingBtn.textContent = bool ? "Pause / Stop" : startLabel; }); } catch(error){ @@ -62,4 +62,4 @@ function exportJSON(object, filename){ // clear guide chrome.runtime.sendMessage({action: "clearGuide"}); -} \ No newline at end of file +}