We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32213db commit 227e1f4Copy full SHA for 227e1f4
2 files changed
modules/candidate_list/jsx/candidateListIndex.js
@@ -239,6 +239,7 @@ class CandidateListIndex extends Component {
239
name: 'visitLabel',
240
type: 'multiselect',
241
options: options.visitlabel,
242
+ sortByValue: false,
243
},
244
245
{
php/libraries/User.class.inc
@@ -362,7 +362,7 @@ class User extends UserPermissions implements
362
if (in_array(\ProjectID::singleton($projectID), $userProjectIDs)) {
363
$visitLabel = $visit->getName();
364
if (!in_array($visitLabel, $visit_labels)) {
365
- $visit_labels[$visitLabel] = $visitLabel;
+ $visit_labels[$visitLabel] = dgettext('visit', $visitLabel);
366
}
367
368
0 commit comments