fix(frontend): add a label to sort box

This commit is contained in:
MiniDigger | Martin 2022-12-28 23:56:34 +01:00
parent 3878351289
commit f379d20ba8

View File

@ -110,7 +110,7 @@ useHead(useSeo(props.user.name, props.user.name + " is an author on Hangar. " +
<h2 class="text-xl">{{ user.name }} has {{ projects.pagination.count }} projects</h2>
</div>
<div class="basis-1/2">
<InputSelect v-model="activeSorter" :values="sorters" item-text="label" item-value="id"></InputSelect>
<InputSelect v-model="activeSorter" :values="sorters" item-text="label" item-value="id" label="Sort by"></InputSelect>
</div>
</div>
<ProjectList :projects="projects"></ProjectList>