Compare commits
2 Commits
b781408c18
...
ba26e7c9e6
Author | SHA1 | Date | |
---|---|---|---|
ba26e7c9e6 | |||
64d6edd9f5 |
@ -188,6 +188,7 @@ 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 [
|
||||||
|
@ -722,6 +722,7 @@ button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.events {
|
.events {
|
||||||
|
font-size: large;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
ul > li {
|
ul > li {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -87,8 +87,7 @@ const TeamPanel = () => {
|
|||||||
justifyContent: "center",
|
justifyContent: "center",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{players &&
|
{players.map((p) => (
|
||||||
players.map((p) => (
|
|
||||||
<button
|
<button
|
||||||
className={
|
className={
|
||||||
"team-player " +
|
"team-player " +
|
||||||
|
Loading…
x
Reference in New Issue
Block a user