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
Bug
A link in the Cymon_Check_IP(v2.1)'s long.html is broken.
<dl class="dl-horizontal" > <dt>permalink</dt> <dd ><a href=content.permalink>{{content.permalink}}</a></dd> </dl>
The href attribute of the a tag doesn't work.
Add interpolation braces({{...}}) around the href attribute.
{{...}}
<dl class="dl-horizontal" > <dt>permalink</dt> <dd ><a href="{{content.permalink}}">{{content.permalink}}</a></dd> </dl>
The text was updated successfully, but these errors were encountered:
fix a broken link (#407)
fd114cf
fix #406 issue
No branches or pull requests
Bug: a broken link in the Cymon_Check_IP report
Request Type
Bug
Work Environment
Description
A link in the Cymon_Check_IP(v2.1)'s long.html is broken.
The href attribute of the a tag doesn't work.
Steps to Reproduce
Possible Solutions
Add interpolation braces(
{{...}}
) around the href attribute.Complementary information
The text was updated successfully, but these errors were encountered: