gitlab-org--gitlab-foss/app/assets/javascripts/repository/components/table/header.vue

10 lines
320 B
Vue

<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>