We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cb2b888 + 6471d8c commit c347fd3Copy full SHA for c347fd3
app/views/help/markdown.html.haml
@@ -88,9 +88,9 @@
88
for commits
89
90
-# this example will only be shown if the user has a project with at least one issue
91
- - if @project = current_user.projects.first
92
- - if issue = @project.issues.first
93
- %p For example in your #{link_to @project.name, project_path(@project)} project something like
+ - if project = current_user.projects.first
+ - if issue = project.issues.first
+ %p For example in your #{link_to project.name, project_path(project)} project something like
94
%pre= "This is related to ##{issue.id}. @#{current_user.name} is working on solving it."
95
%p becomes
96
= markdown "This is related to ##{issue.id}. @#{current_user.name} is working on solving it."
0 commit comments