Merge branch 'main' of github.com:netbymatt/ws4kp

This commit is contained in:
Matt Walsh
2025-06-12 09:30:38 -05:00
8 changed files with 17 additions and 8 deletions

View File

@@ -38,6 +38,9 @@ class Setting {
if (this.type === 'checkbox' && urlValue !== undefined) {
urlState = urlValue === 'true';
}
if (this.type === 'boolean' && urlValue !== undefined) {
urlState = urlValue === 'true';
}
if (this.type === 'select' && urlValue !== undefined) {
urlState = parseFloat(urlValue);
}