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(PlayerTeamLink)
.join(Team) .join(Team)
.where(Team.id == team_id, P.disabled == False) .where(Team.id == team_id, P.disabled == False)
.order_by(P.display_name)
).all() ).all()
if players: if players:
return [ return [

View File

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

View File

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