diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2026-03-31 09:20:24 -0300 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2026-03-31 09:20:24 -0300 |
| commit | 11d67d826e48be0fb6c1f5422ee4bd02ca3f0983 (patch) | |
| tree | 1ba541e4c81d3b9a372bdbe6841e5c9cb29242fd /src | |
| parent | ef6899009050d9036651162c17a8e7572552c558 (diff) | |
client: js: go home Boolean
Diffstat (limited to 'src')
| -rw-r--r-- | src/static/js/client/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/client/index.js b/src/static/js/client/index.js index 16ebe89f..cd617bea 100644 --- a/src/static/js/client/index.js +++ b/src/static/js/client/index.js @@ -133,7 +133,7 @@ for (const module of modules) { break; case 'boolean': - formatRead = Boolean; + formatRead = value => value === 'true' ? true : false; formatWrite = String; break; |