[mirotalk] - fix typo

This commit is contained in:
Miroslav Pejic
2026-02-03 17:18:25 +01:00
parent 92418deea1
commit 92e3f27e3a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ document.addEventListener('DOMContentLoaded', () => {
// Accept HH:MM:SS format only
const re = /^(\d{2}):(\d{2}):(\d{2})$/;
if (!re.test(value)) {
throw new Error('Duration must be HH:MM:SS (e.g. 12:30:00) or left empty for unlimited');
throw new Error('Duration must be HH:MM:SS (e.g. 00:30:00) or left empty for unlimited');
}
return value;
};
+1 -1
View File
@@ -144,7 +144,7 @@
class="cr-input"
type="text"
inputmode="numeric"
placeholder="12:30:00"
placeholder="00:30:00"
pattern="^\d{2}:\d{2}:\d{2}$"
maxlength="8"
/>