batch replacing ', ou' in filters

This commit is contained in:
2022-10-18 15:25:43 +02:00
parent 93713f2ac2
commit a7a921ee4d
22 changed files with 22 additions and 22 deletions

View File

@@ -76,7 +76,7 @@ class AgentFilter implements FilterInterface
return [
'Filtered by agent: only %agents%', [
'%agents' => implode(', ou ', $users),
'%agents' => implode(', ', $users),
], ];
}

View File

@@ -90,7 +90,7 @@ class JobFilter implements FilterInterface
}
return ['Filtered by agent job: only %jobs%', [
'%jobs%' => implode(', ou ', $userJobs),
'%jobs%' => implode(', ', $userJobs),
]];
}

View File

@@ -90,7 +90,7 @@ class ScopeFilter implements FilterInterface
}
return ['Filtered by agent scope: only %scopes%', [
'%scopes%' => implode(', ou ', $scopes),
'%scopes%' => implode(', ', $scopes),
]];
}