Skip to content
Snippets Groups Projects
Commit 301e3868 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

feat: add profile search

refs #219
parent fd13ef82
No related branches found
No related tags found
No related merge requests found
<template>
<PageHeader :title="t('profileList.title')" />
<div class="tw-flex tw-gap-6 tw-justify-end tw-items-center tw-mb-6">
<FormGroup class="tw-m-0">
<template #iconLeft="attrs">
<icon-system-uicons-search v-bind="attrs" />
</template>
<template #default="attrs">
<input
v-model="searchTerm"
v-bind="attrs"
:aria-label="t('profileList.searchLabel')"
:placeholder="t('profileList.searchPlaceholder')"
/>
</template>
</FormGroup>
</div>
<ATable
v-model:page="page"
v-model:items-per-page="profilesPerPage"
......@@ -63,6 +79,7 @@ import PageHeader from '@/components/PageHeader.vue'
import { useI18n } from '@/i18n'
import AColorBadge from '@/components/generic/AColorBadge.vue'
import Image from '@/components/generic/Image.vue'
import FormGroup from '@/components/generic/FormGroup.vue'
const { t } = useI18n()
const hostStore = useHostStore()
......
......@@ -247,6 +247,8 @@ export default {
profileList: {
title: 'Profile',
searchLabel: 'Suche nach Namen',
searchPlaceholder: 'Name des Profils...',
},
profileDetails: {
......
......@@ -247,6 +247,8 @@ export default {
profileList: {
title: 'Profiles',
searchLabel: 'Search by name',
searchPlaceholder: 'Name of the profile...',
},
profileDetails: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment