Fix some small bugs

This commit is contained in:
Fabian Stamm
2025-05-27 20:31:16 +02:00
parent ffacba2e96
commit c168df8365
9 changed files with 193 additions and 67 deletions

View File

@ -36,7 +36,7 @@ export function apply_string(data: any) {
return String(data);
}
export function apply_boolean(data: any) {
export function apply_bool(data: any) {
return Boolean(data);
}