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

_file_actions.html.haml « conflicts « merge_requests « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 220ddf1bad3413882d0865bc1d691a30f1b13ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.file-actions.d-flex.align-items-center.gl-ml-auto.gl-align-self-start
  .btn-group.gl-mr-3{ "v-if" => "file.type === 'text'" }
    %button.btn.gl-button{ ":class" => "{ 'active': file.resolveMode == 'interactive' }",
      '@click' => "onClickResolveModeButton(file, 'interactive')",
      type: 'button' }
      = _('Interactive mode')
    %button.btn.gl-button{ ':class' => "{ 'active': file.resolveMode == 'edit' }",
      '@click' => "onClickResolveModeButton(file, 'edit')",
      type: 'button' }
      = _('Edit inline')
  %a.btn.gl-button.view-file{ ":href" => "file.blobPath" }
    = _('View file @%{commit_sha}') % { commit_sha: '{{conflictsData.shortCommitSha}}' }