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: 05af57acf038bfedf4a491024c78fe581218ad6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.file-actions
  .btn-group{"v-if" => "file.type === 'text'"}
    %button.btn{ ":class" => "{ 'active': file.resolveMode == 'interactive' }",
      '@click' => "onClickResolveModeButton(file, 'interactive')",
      type: 'button' }
      Interactive mode
    %button.btn{ ':class' => "{ 'active': file.resolveMode == 'edit' }",
      '@click' => "onClickResolveModeButton(file, 'edit')",
      type: 'button' }
      Edit inline
  %a.btn.view-file.btn-file-option{":href" => "file.blobPath"}
    View file @{{conflictsData.shortCommitSha}}