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

repo_file_options.vue « components « repo « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a15755f029da4068726c29273c2c4bc310f1a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script>
const RepoFileOptions = {
  props: {
    isMini: {
      type: Boolean,
      required: false,
      default: false,
    },
    projectName: {
      type: String,
      required: true,
    },
  },
};

export default RepoFileOptions;
</script>

<template>
  <tr v-if="isMini" class="repo-file-options">
    <td>
      <span class="title">{{projectName}}</span>
    </td>
  </tr>
</template>