mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-19 01:26:08 +10:00
Merge branch 'issue_3468_broken_link' into 'master'
Fixed invalid link on starred projects dashboard. Fixes #3468 The MR fixes 'Project' links on a dashboard pages headers. See the issue for the details. This MR does not include tests since the change is rather trivial and there are no (as far as I have seen) existing tests for checking links validity. In case tests are required I would like to get some guidance on the implementation first. At least I would like to know what should be covered: changed links, all header links, all navigation? See merge request !1926
This commit is contained in:
@@ -13,6 +13,7 @@ v 8.2.2
|
||||
- Fix Error 500 when viewing user's personal projects from admin page (Stan Hu)
|
||||
- Fix: Raw private snippets access workflow
|
||||
- Prevent "413 Request entity too large" errors when pushing large files with LFS
|
||||
- Fix invalid links within projects dashboard header
|
||||
|
||||
v 8.2.1
|
||||
- Forcefully update builds that didn't want to update with state machine
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
= auto_discovery_link_tag(:atom, dashboard_projects_url(format: :atom, private_token: current_user.private_token), title: "All activity")
|
||||
|
||||
- page_title "Projects"
|
||||
- header_title "Projects", root_path
|
||||
- header_title "Projects", dashboard_projects_path
|
||||
|
||||
= render 'dashboard/projects_head'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- page_title "Starred Projects"
|
||||
- header_title "Projects", projects_path
|
||||
- header_title "Projects", dashboard_projects_path
|
||||
|
||||
= render 'dashboard/projects_head'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- page_title "Projects"
|
||||
- header_title "Projects", root_path
|
||||
- header_title "Projects", dashboard_projects_path
|
||||
|
||||
- if current_user
|
||||
= render 'dashboard/projects_head'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- page_title "Projects"
|
||||
- header_title "Projects", root_path
|
||||
- header_title "Projects", dashboard_projects_path
|
||||
|
||||
- if current_user
|
||||
= render 'dashboard/projects_head'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- page_title "Projects"
|
||||
- header_title "Projects", root_path
|
||||
- header_title "Projects", dashboard_projects_path
|
||||
|
||||
- if current_user
|
||||
= render 'dashboard/projects_head'
|
||||
|
||||
Reference in New Issue
Block a user