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
If adding the @Route annotation on a class that doesn't extend Component the build doesn't fail and the route is not available for use.
@Route
Component
Having a route annotation on a non Component class should log or throw an exception that it is not used due to not being a Component class.
@Route public class MyView { }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the bug
If adding the
@Route
annotation on a class that doesn't extendComponent
the build doesn't fail and the route is not available for use.Expected behavior
Having a route annotation on a non Component class should log or throw an exception that it is not used due to not being a Component class.
Minimal reproducible example
Versions
The text was updated successfully, but these errors were encountered: