e2056f08f0
When a Merge request is merged, shows only the Report abuse menu item in the dropdown menu instead of showing the close_reopen_report toggle with an unusable Close button. The Report abuse is still hidden when the author of the Merge request is the current_user. Hides the Reopen button on a closed and locked issue when the issue.author is not the current_user
18 lines
1.3 KiB
Text
18 lines
1.3 KiB
Text
- is_current_user = issuable_author_is_current_user(issuable)
|
|
- display_issuable_type = issuable_display_type(issuable)
|
|
- button_method = issuable_close_reopen_button_method(issuable)
|
|
- are_close_and_open_buttons_hidden = issuable_button_hidden?(issuable, true) && issuable_button_hidden?(issuable, false)
|
|
|
|
- if is_current_user
|
|
- if can_update
|
|
= link_to "Close #{display_issuable_type}", close_issuable_path(issuable), method: button_method,
|
|
class: "d-none d-sm-none d-md-block btn btn-grouped btn-close js-btn-issue-action #{issuable_button_visibility(issuable, true)}", title: "Close #{display_issuable_type}"
|
|
- if can_reopen
|
|
= link_to "Reopen #{display_issuable_type}", reopen_issuable_path(issuable), method: button_method,
|
|
class: "d-none d-sm-none d-md-block btn btn-grouped btn-reopen js-btn-issue-action #{issuable_button_visibility(issuable, false)}", title: "Reopen #{display_issuable_type}"
|
|
- else
|
|
- if can_update && !are_close_and_open_buttons_hidden
|
|
= render 'shared/issuable/close_reopen_report_toggle', issuable: issuable
|
|
- else
|
|
= link_to 'Report abuse', new_abuse_report_path(user_id: issuable.author.id, ref_url: issuable_url(issuable)),
|
|
class: 'd-none d-sm-none d-md-block btn btn-grouped btn-close-color', title: 'Report abuse'
|