feat(filter): add button to show filter results

This commit is contained in:
kolaente 2024-03-08 13:26:31 +01:00
parent 3cf2b40e4c
commit 04b90a0f75
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,15 @@
v-model="params.filter" v-model="params.filter"
:project-id="projectId" :project-id="projectId"
/> />
<template #footer>
<x-button
variant="primary"
@click.prevent.stop="change()"
>
{{ $t('filters.showResults') }}
</x-button>
</template>
</card> </card>
</template> </template>

View File

@ -385,6 +385,7 @@
"filters": { "filters": {
"title": "Filters", "title": "Filters",
"clear": "Clear Filters", "clear": "Clear Filters",
"showResults": "Show results",
"attributes": { "attributes": {
"title": "Title", "title": "Title",
"titlePlaceholder": "The saved filter title goes here…", "titlePlaceholder": "The saved filter title goes here…",