Bug 69519 - Accounts. Sorting by Last name field does not work

This commit is contained in:
Alexey Safronov 2024-08-15 16:13:18 +04:00
parent b45c92b209
commit 70b0942dfb

View File

@ -1963,14 +1963,7 @@ const SectionFilterContent = ({
const firstName = {
id: "sort-by_first-name",
key: "firstname",
label: t("Common:FirstName"),
default: true,
};
const lastName = {
id: "sort-by_last-name",
key: "lastname",
label: t("Common:LastName"),
label: t("Common:Name"),
default: true,
};
@ -2012,7 +2005,7 @@ const SectionFilterContent = ({
hideableColumns.Storage = storage;
}
options.push(firstName, lastName, type, department, email);
options.push(firstName, type, department, email);
if (showStorageInfo) options.push(storage);
return options;