summaryrefslogtreecommitdiff
path: root/app/views/projects/_home_panel.html.haml
diff options
context:
space:
mode:
authorVinnie Okada <vokada@mrvinn.com>2014-09-30 13:04:13 -0500
committerVinnie Okada <vokada@mrvinn.com>2014-09-30 13:04:13 -0500
commitb7874c8520bff24c955eba9636367a453dff6cb8 (patch)
treea11b6abbdd2190efe1bc365ed2418bd79aaacdef /app/views/projects/_home_panel.html.haml
parent136d44550d7c37b9db052471865f46104d8fc607 (diff)
downloadgitlab-ce-b7874c8520bff24c955eba9636367a453dff6cb8.tar.gz
Fix typo in link title
Diffstat (limited to 'app/views/projects/_home_panel.html.haml')
-rw-r--r--app/views/projects/_home_panel.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/_home_panel.html.haml b/app/views/projects/_home_panel.html.haml
index 2c1ac06fc90..cdbdec698fa 100644
--- a/app/views/projects/_home_panel.html.haml
+++ b/app/views/projects/_home_panel.html.haml
@@ -17,7 +17,7 @@
.fork-buttons
- if current_user && can?(current_user, :fork_project, @project) && @project.namespace != current_user.namespace
- if current_user.already_forked?(@project)
- = link_to project_path(current_user.fork_of(@project)), title: 'Got to my fork' do
+ = link_to project_path(current_user.fork_of(@project)), title: 'Go to my fork' do
= link_to_toggle_fork
- else
= link_to fork_project_path(@project), title: "Fork project", method: "POST" do