fix issue #1 changes regarding PR #2 by @FrissBrot

This commit is contained in:
Michi 2024-11-08 20:23:34 +01:00
parent cd2de15b2b
commit 1fcbe7b968
2 changed files with 2 additions and 3 deletions

View file

@ -7,7 +7,7 @@
background: #D6AFF2;
color: #000;
width: auto;
min-width: 120px;
min-width: 140px;
height: auto;
--light: #D6AFF2;
--dark: #c791ed;
@ -23,7 +23,6 @@
display: flex;
flex-direction: column;
justify-content: center;
align-content: baseline;
align-items: center;
}

View file

@ -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 recording" : startLabel;
});
}
catch(error){