Compare commits
No commits in common. "ba26e7c9e6b45b37bf2d212312099b5e0a5a5c3e" and "b781408c18d6907c88a8b5b231d99b5c5328c46c" have entirely different histories.
ba26e7c9e6
...
b781408c18
@ -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 [
|
||||
|
@ -722,7 +722,6 @@ button {
|
||||
}
|
||||
|
||||
.events {
|
||||
font-size: large;
|
||||
padding: 20px;
|
||||
ul > li {
|
||||
padding: 0;
|
||||
|
@ -87,7 +87,8 @@ const TeamPanel = () => {
|
||||
justifyContent: "center",
|
||||
}}
|
||||
>
|
||||
{players.map((p) => (
|
||||
{players &&
|
||||
players.map((p) => (
|
||||
<button
|
||||
className={
|
||||
"team-player " +
|
||||
|
Loading…
x
Reference in New Issue
Block a user