Skip to content

Commit d6e8811

Browse files
vlo-rtefreddidierRTE
authored andcommitted
Archives screen : set alphabetical sorting for emitter and recipients (#8716)
Signed-off-by: vlo-rte <[email protected]>
1 parent 8cc71f4 commit d6e8811

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ui/main/src/app/components/share/archives-logging-filters/ArchivesLoggingFiltersComponent.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ export class ArchivesLoggingFiltersComponent implements OnInit, OnChanges, OnDes
219219
EntitiesService.getEntities().forEach((entity) => {
220220
this.entitiesMultiSelectOptions.push(new MultiSelectOption(entity.id, entity.name));
221221
});
222+
this.entitiesMultiSelectOptions.sort((a, b) => a.label?.localeCompare(b.label));
222223

223224
// we must filter visibleProcesses to keep only the processes in the perimeter of the user
224225
const processesIds = [];

0 commit comments

Comments
 (0)