align correct
This commit is contained in:
@@ -218,7 +218,7 @@ export const JobTable: React.FC<JobTableProps> = ({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<TableRow key={job.id} data-state={isSelected ? "selected" : undefined}>
|
<TableRow key={job.id} data-state={isSelected ? "selected" : undefined}>
|
||||||
<TableCell className="align-top">
|
<TableCell className="align-middle">
|
||||||
<Checkbox
|
<Checkbox
|
||||||
aria-label={`Select ${job.title}`}
|
aria-label={`Select ${job.title}`}
|
||||||
checked={isSelected}
|
checked={isSelected}
|
||||||
@@ -230,7 +230,7 @@ export const JobTable: React.FC<JobTableProps> = ({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell className="align-top">
|
<TableCell className="align-middle">
|
||||||
<Button
|
<Button
|
||||||
asChild
|
asChild
|
||||||
variant="link"
|
variant="link"
|
||||||
@@ -243,7 +243,7 @@ export const JobTable: React.FC<JobTableProps> = ({
|
|||||||
</Button>
|
</Button>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
||||||
<TableCell className="align-top whitespace-normal break-words">
|
<TableCell className="align-middle whitespace-normal break-words">
|
||||||
{job.employer}
|
{job.employer}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
||||||
@@ -253,7 +253,7 @@ export const JobTable: React.FC<JobTableProps> = ({
|
|||||||
</Badge>
|
</Badge>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
||||||
<TableCell className="align-top whitespace-normal break-words text-muted-foreground">
|
<TableCell className="align-middle whitespace-normal break-words text-muted-foreground">
|
||||||
{job.location || "—"}
|
{job.location || "—"}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user