Compare commits

..

No commits in common. "ba26e7c9e6b45b37bf2d212312099b5e0a5a5c3e" and "b781408c18d6907c88a8b5b231d99b5c5328c46c" have entirely different histories.

3 changed files with 17 additions and 18 deletions

View File

@ -188,7 +188,6 @@ async def list_players(
.join(PlayerTeamLink)
.join(Team)
.where(Team.id == team_id, P.disabled == False)
.order_by(P.display_name)
).all()
if players:
return [

View File

@ -722,7 +722,6 @@ button {
}
.events {
font-size: large;
padding: 20px;
ul > li {
padding: 0;

View File

@ -87,7 +87,8 @@ const TeamPanel = () => {
justifyContent: "center",
}}
>
{players.map((p) => (
{players &&
players.map((p) => (
<button
className={
"team-player " +