Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "true" value handling in boolean components (checkbox/switch) #195

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

x-m-el
Copy link
Collaborator

@x-m-el x-m-el commented Dec 11, 2024

When creating a new entity with a form, a boolean value will be send as object true (which is valid ttl syntax).
Interestingly, when updating an entity (which would happen via a PUT request), the ttl will instead use "true"^^xsd:boolean. (as far as I could find, also valid).

When requesting the boolean value, the same syntax ("true"^^xsd:boolean) is used, but the boolean-aware components expect ("1"^^xsd:boolean). This makes it so they can handle both "true" and "1".
Fixing it here seemed the most logical.

some helper function might make sense, so it can also be used by developers creating custom components?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant