Skip to content
Snippets Groups Projects
Unverified Commit 26dd4b3b authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Adds an ID to the settings section to allow anchor linking

parent cd296368
No related branches found
No related tags found
1 merge request!10495Merge Requests - Assignee
Loading
Loading
@@ -3,7 +3,7 @@
- project = local_assigns.fetch(:project)
- expanded = Rails.env.test?
 
%section.settings.no-animate{ class: ('expanded' if expanded) }
%section.settings.no-animate#js-export-project{ class: ('expanded' if expanded) }
.settings-header
%h4
Export project
Loading
Loading
- expanded = expand_deploy_tokens_section?(@new_deploy_token)
 
%section.settings.no-animate{ class: ('expanded' if expanded) }
%section.settings.no-animate#js-deploy-tokens{ class: ('expanded' if expanded) }
.settings-header
%h4= s_('DeployTokens|Deploy Tokens')
%button.btn.js-settings-toggle.qa-expand-deploy-keys{ type: 'button' }
Loading
Loading
Loading
Loading
@@ -4,7 +4,7 @@
- expanded = Rails.env.test?
 
.project-edit-container
%section.settings.general-settings.no-animate{ class: ('expanded' if expanded) }
%section.settings.general-settings.no-animate#js-general-project-settings{ class: ('expanded' if expanded) }
.settings-header
%h4
General project
Loading
Loading
@@ -65,7 +65,7 @@
= link_to _('Remove avatar'), project_avatar_path(@project), data: { confirm: _("Avatar will be removed. Are you sure?") }, method: :delete, class: "btn btn-danger btn-inverted"
= f.submit 'Save changes', class: "btn btn-success js-btn-save-general-project-settings"
 
%section.settings.sharing-permissions.no-animate{ class: ('expanded' if expanded) }
%section.settings.sharing-permissions.no-animate#js-shared-permissions{ class: ('expanded' if expanded) }
.settings-header
%h4
Permissions
Loading
Loading
@@ -82,7 +82,7 @@
 
= render_if_exists 'projects/issues_settings'
 
%section.qa-merge-request-settings.settings.merge-requests-feature.no-animate{ class: [('expanded' if expanded), ('hidden' if @project.project_feature.send(:merge_requests_access_level) == 0)] }
%section.qa-merge-request-settings.settings.merge-requests-feature.no-animate#js-merge-request-settings{ class: [('expanded' if expanded), ('hidden' if @project.project_feature.send(:merge_requests_access_level) == 0)] }
.settings-header
%h4
Merge request
Loading
Loading
@@ -101,7 +101,7 @@
 
= render 'export', project: @project
 
%section.qa-advanced-settings.settings.advanced-settings.no-animate{ class: ('expanded' if expanded) }
%section.qa-advanced-settings.settings.advanced-settings.no-animate#js-project-advanced-settings{ class: ('expanded' if expanded) }
.settings-header
%h4
Advanced
Loading
Loading
- expanded = Rails.env.test?
%section.settings.no-animate{ class: ('expanded' if expanded) }
%section.settings.no-animate#js-push-remote-settings{ class: ('expanded' if expanded) }
.settings-header
%h4
Push to a remote repository
Loading
Loading
- expanded = Rails.env.test?
 
%section.settings.no-animate{ class: ('expanded' if expanded) }
%section.settings.no-animate#js-protected-tags-settings{ class: ('expanded' if expanded) }
.settings-header
%h4
Protected Tags
Loading
Loading
Loading
Loading
@@ -51,7 +51,7 @@
.settings-content
= render 'ci/variables/index', save_endpoint: project_variables_path(@project)
 
%section.settings.no-animate{ class: ('expanded' if expanded) }
%section.settings.no-animate#js-pipeline-triggers{ class: ('expanded' if expanded) }
.settings-header
%h4
Pipeline triggers
Loading
Loading
---
title: Allows settings sections to expand by default when linking to them
merge_request: 20211
author:
type: other
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment