Merge branch '40895-fix-frequent-projects-stale-path' into 'master'
Use relative URL for projects to avoid storing domains Closes #40895 See merge request gitlab-org/gitlab-ce!15876
This commit is contained in:
commit
bcb14a0dbb
2 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
- project_meta = { id: @project.id, name: @project.name, namespace: @project.name_with_namespace, web_url: @project.web_url, avatar_url: @project.avatar_url } if @project&.persisted?
|
||||
- project_meta = { id: @project.id, name: @project.name, namespace: @project.name_with_namespace, web_url: project_path(@project), avatar_url: @project.avatar_url } if @project&.persisted?
|
||||
.projects-dropdown-container
|
||||
.project-dropdown-sidebar
|
||||
%ul
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Use relative URL for projects to avoid storing domains
|
||||
merge_request: 15876
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue