feat(admin):fixed view job listing in active jobs in admin dashboar
This commit is contained in:
@@ -191,19 +191,25 @@ export default async function DashboardPage() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{job.link && (
|
<div className="pt-2 flex items-center gap-3">
|
||||||
<div className="pt-2">
|
<Link
|
||||||
|
href={`/jobs/${job.id}`}
|
||||||
|
className="inline-flex items-center gap-1 text-xs text-blue-600 hover:text-blue-700 font-medium group-hover:underline"
|
||||||
|
>
|
||||||
|
View Job
|
||||||
|
</Link>
|
||||||
|
{job.link && (
|
||||||
<a
|
<a
|
||||||
href={job.link}
|
href={job.link}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
className="inline-flex items-center gap-1 text-xs text-blue-600 hover:text-blue-700 font-medium group-hover:underline"
|
className="inline-flex items-center gap-1 text-xs text-gray-600 hover:text-gray-800"
|
||||||
>
|
>
|
||||||
View Job
|
Company Link
|
||||||
<ExternalLink className="w-3 h-3" />
|
<ExternalLink className="w-3 h-3" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
)}
|
||||||
)}
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|||||||
Reference in New Issue
Block a user