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
it
See https://github.com/FroMage/quarkus-renarde-todo/blob/main/src/main/resources/templates/tags/user.html
The validator treats it as a java.lang.Object, so it marks all the method invocations as errors.
java.lang.Object
It makes more sense to skip validating method invocations and field accesses on this object, since its actual type is not know.
The text was updated successfully, but these errors were encountered:
In this usecase , the user tag is called here https://github.com/FroMage/quarkus-renarde-todo/blob/d03d71f6b41b14b228fe8ad782b32800dcb9b6f0/src/main/resources/templates/main.html#L19
{#user inject:user img=true size=20/}
As I have implemented Qute closed template, my plan is to provide a smart inference to say that it must be an User object instead of Object only.
Sorry, something went wrong.
See issue #913
No branches or pull requests
See https://github.com/FroMage/quarkus-renarde-todo/blob/main/src/main/resources/templates/tags/user.html
The validator treats
it
as ajava.lang.Object
, so it marks all the method invocations as errors.It makes more sense to skip validating method invocations and field accesses on this object, since its actual type is not know.
The text was updated successfully, but these errors were encountered: