Hide EV column from draft board available participants table
https://claude.ai/code/session_016oJK1gmWZ48YWEZmVqm6f9
This commit is contained in:
parent
2d6dd6ec9f
commit
d40a0a0413
1 changed files with 1 additions and 5 deletions
|
|
@ -117,7 +117,6 @@ export function AvailableParticipantsSection({
|
||||||
<tr>
|
<tr>
|
||||||
<th className="text-left p-3 font-semibold">Participant</th>
|
<th className="text-left p-3 font-semibold">Participant</th>
|
||||||
<th className="text-left p-3 font-semibold">Sport</th>
|
<th className="text-left p-3 font-semibold">Sport</th>
|
||||||
<th className="text-right p-3 font-semibold">EV</th>
|
|
||||||
{hasTeam && (
|
{hasTeam && (
|
||||||
<th className="text-right p-3 font-semibold">Queue</th>
|
<th className="text-right p-3 font-semibold">Queue</th>
|
||||||
)}
|
)}
|
||||||
|
|
@ -127,7 +126,7 @@ export function AvailableParticipantsSection({
|
||||||
{participants.length === 0 ? (
|
{participants.length === 0 ? (
|
||||||
<tr>
|
<tr>
|
||||||
<td
|
<td
|
||||||
colSpan={hasTeam ? 4 : 3}
|
colSpan={hasTeam ? 3 : 2}
|
||||||
className="text-center py-8 text-muted-foreground"
|
className="text-center py-8 text-muted-foreground"
|
||||||
>
|
>
|
||||||
No participants found
|
No participants found
|
||||||
|
|
@ -192,9 +191,6 @@ export function AvailableParticipantsSection({
|
||||||
<td className="p-3 text-muted-foreground">
|
<td className="p-3 text-muted-foreground">
|
||||||
{participant.sport.name}
|
{participant.sport.name}
|
||||||
</td>
|
</td>
|
||||||
<td className="p-3 text-right font-mono font-semibold">
|
|
||||||
{participant.expectedValue ? participant.expectedValue.toFixed(1) : "—"}
|
|
||||||
</td>
|
|
||||||
{hasTeam && (
|
{hasTeam && (
|
||||||
<td className="p-3 text-right">
|
<td className="p-3 text-right">
|
||||||
<div className="flex gap-2 justify-end items-center">
|
<div className="flex gap-2 justify-end items-center">
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue