Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_commit_button.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19943aa68a33b8a464b334e1e4e982d3ead499ed (plain)
1
2
3
4
5
6
7
8
9
10
11
.gl-display-flex.gl-mt-7
  - submit_button_options = { type: :submit, variant: :confirm, button_options: { id: 'commit-changes', class: 'js-commit-button', data: { qa_selector: 'commit_button' } } }
  = render Pajamas::ButtonComponent.new(**submit_button_options) do
    = _('Commit changes')
  = render Pajamas::ButtonComponent.new(loading: true, disabled: true, **submit_button_options.merge({ button_options: { class: 'js-commit-button-loading gl-display-none' } })) do
    = _('Commit changes')

  = render Pajamas::ButtonComponent.new(href: cancel_path, button_options: { class: 'gl-ml-3', id: 'cancel-changes', aria: { label: _('Discard changes') }, data: { confirm: leave_edit_message, confirm_btn_variant: "danger" } }) do
    = _('Cancel')

  = render 'shared/projects/edit_information'