We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When on subsequent render the IF condition added the content, instead of inline, it is added to the end.
<custom-element> <template> <form slice="email-form" custom-validity=" string-length(//slice/username) > 3 ?? concat('should be more than 3 characters, now is ',string-length(//slice/username) ) "> <label> Email <input name="email" slice="username" slice-event="input" placeholder="non-empty" required=""> </label> <if test="//username/@validation-message"> <var>{//username/@validation-message}</var> </if> <button>Next</button> <p>//email-form/@validation-message: {//email-form/@validation-message} </p> <p>//slice/username: {//slice/username} </p> </form> </template> </custom-element>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When on subsequent render the IF condition added the content, instead of inline, it is added to the end.
The text was updated successfully, but these errors were encountered: