-
-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Bug fixed for deleted label in issue comment #904
New issue
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
Conversation
LGTM |
</div> | ||
{{else if eq .Type 7}} | ||
{{if .Label}} | ||
<div class="event"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't the code block inside the new if
be further indented?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. It's different logic. I would like let it two if
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I understand why you're using two if
s, I'm saying that it should be like this
{{else if eq .Type 7}}
{{if .Label}}
<div class="event">
...
instead of like this
{{else if eq .Type 7}}
{{if .Label}}
<div class="event">
...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
Will you fix this for milestones as well #804? Or should that be a different PR/issue? |
@jeppech I will send another PRs to fix them. |
LGTM |
fix #894