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

header.vue « table « components « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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>