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

commit_icon.js « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70ee9cff22b4043e18edc96f729322077d7e03de (plain)
1
2
3
4
5
6
7
8
9
10
11
import { commitItemIconMap } from './constants';

export default (file) => {
  if (file.deleted) {
    return commitItemIconMap.deleted;
  } else if (file.tempFile && !file.prevPath) {
    return commitItemIconMap.addition;
  }

  return commitItemIconMap.modified;
};