summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/components/table/header.vue
blob: 9d30aa8815584f5ace2e2afed6d709d0e6190b76 (plain)
1
2
3
4
5
6
7
8
9
<template>
  <thead>
    <tr>
      <th id="name" scope="col">{{ s__('ProjectFileTree|Name') }}</th>
      <th id="last-commit" scope="col" class="d-none d-sm-table-cell">{{ __('Last commit') }}</th>
      <th id="last-update" scope="col" class="text-right">{{ __('Last update') }}</th>
    </tr>
  </thead>
</template>