summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-09-30 20:30:02 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2014-09-30 20:30:02 +0200
commit654f949805fbb78b1bc722240e8a7853ba97a3bd (patch)
treea11b6abbdd2190efe1bc365ed2418bd79aaacdef
parent136d44550d7c37b9db052471865f46104d8fc607 (diff)
parentb7874c8520bff24c955eba9636367a453dff6cb8 (diff)
downloadgitlab-ce-654f949805fbb78b1bc722240e8a7853ba97a3bd.tar.gz
Merge pull request #7917 from mr-vinn/fix-alt-typo
Fix typo in link title
-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