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
Create the following file, name it with a lowercase letter, ie. foo.cfc:
foo.cfc
component { }
The issue COMPONENT_INVALID_NAME is correctly reported, however the message attribute contains:
COMPONENT_INVALID_NAME
message
Component name ${component} is not a valid name. Please use CamelCase and start with a capital letter.
with the missing substitution of the component's name for ${component}. Adding name="foo" to the component shows the same problem.
${component}
name="foo"
component
The text was updated successfully, but these errors were encountered:
Same problem with COMPONENT_TOO_LONG, also shows a message missing the actual name:
COMPONENT_TOO_LONG
Component name ${component} should be shorter than 15 characters.
and with other messages referencing ${component}.
Sorry, something went wrong.
997d4c0
fixed #248, set component name correctly in the context.
aa41058
fixed #248
bc12ce1
No branches or pull requests
Create the following file, name it with a lowercase letter, ie.
foo.cfc
:The issue
COMPONENT_INVALID_NAME
is correctly reported, however themessage
attribute contains:with the missing substitution of the component's name for
${component}
. Addingname="foo"
to thecomponent
shows the same problem.The text was updated successfully, but these errors were encountered: