mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
Allow everyone to sort tags, not only those who has access
This commit is contained in:
@@ -15,6 +15,7 @@ v 8.10.0 (unreleased)
|
||||
- Make images fit to the size of the viewport !4810
|
||||
- Fix check for New Branch button on Issue page !4630 (winniehell)
|
||||
- Fix MR-auto-close text added to description. !4836
|
||||
- Fix issue, preventing users w/o push access to sort tags !5105 (redetection)
|
||||
- Add Spring EmojiOne updates.
|
||||
- Fix pagination when sorting by columns with lots of ties (like priority)
|
||||
- Updated project header design
|
||||
|
||||
@@ -7,22 +7,22 @@
|
||||
.nav-text
|
||||
Tags give the ability to mark specific points in history as being important
|
||||
|
||||
- if can? current_user, :push_code, @project
|
||||
.nav-controls
|
||||
.nav-controls
|
||||
- if can? current_user, :push_code, @project
|
||||
= link_to new_namespace_project_tag_path(@project.namespace, @project), class: 'btn btn-create new-tag-btn' do
|
||||
New tag
|
||||
.dropdown.inline
|
||||
%button.dropdown-toggle.btn{ type: 'button', data: { toggle: 'dropdown'} }
|
||||
%span.light= @sort.humanize
|
||||
%b.caret
|
||||
%ul.dropdown-menu.dropdown-menu-align-right
|
||||
%li
|
||||
= link_to namespace_project_tags_path(sort: nil) do
|
||||
Name
|
||||
= link_to namespace_project_tags_path(sort: sort_value_recently_updated) do
|
||||
= sort_title_recently_updated
|
||||
= link_to namespace_project_tags_path(sort: sort_value_oldest_updated) do
|
||||
= sort_title_oldest_updated
|
||||
.dropdown.inline
|
||||
%button.dropdown-toggle.btn{ type: 'button', data: { toggle: 'dropdown'} }
|
||||
%span.light= @sort.humanize
|
||||
%b.caret
|
||||
%ul.dropdown-menu.dropdown-menu-align-right
|
||||
%li
|
||||
= link_to namespace_project_tags_path(sort: nil) do
|
||||
Name
|
||||
= link_to namespace_project_tags_path(sort: sort_value_recently_updated) do
|
||||
= sort_title_recently_updated
|
||||
= link_to namespace_project_tags_path(sort: sort_value_oldest_updated) do
|
||||
= sort_title_oldest_updated
|
||||
|
||||
.tags
|
||||
- if @tags.any?
|
||||
|
||||
Reference in New Issue
Block a user