summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repo/components/repo_file_options.vue
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>