Fixed: [export] rename label on CurrentActionFilter

This commit is contained in:
Julien Fastré 2023-06-28 17:01:42 +02:00
parent da50fbc1fb
commit 90e8687799
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
2 changed files with 8 additions and 2 deletions

View File

@ -0,0 +1,6 @@
kind: Fixed
body: '[export] Rename label for CurrentActionFilter (on accompanying period work)
to make precision between "ouvert" and "sans date de fin"'
time: 2023-06-28T17:00:55.206937751+02:00
custom:
Issue: ""

View File

@ -44,11 +44,11 @@ class CurrentActionFilter implements FilterInterface
public function describeAction($data, $format = 'string'): array
{
return ['Filtered by current action'];
return ['Filtered actions without end date'];
}
public function getTitle(): string
{
return 'Filter by current actions';
return 'Filter actions without end date';
}
}