This commit is contained in:
yj 2024-08-19 11:08:55 +08:00
parent cb1d0af2c4
commit d3a19c53b6
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ const Meeting: React.FC = () => {
return 1; // b 的优先级更高
} else {
// 如果角色相同,则可以按其他标准排序,例如按姓名字母顺序
return a.name.localeCompare(b.name);
return a.userName.localeCompare(b.userName);
}
});
}