style: show cursor pointer on launch button hover

This commit is contained in:
zhom
2025-07-28 15:39:24 +04:00
parent ed1132bdc3
commit d3822bdd88
+4 -1
View File
@@ -377,7 +377,10 @@ export function ProfilesDataTable({
variant={isRunning ? "destructive" : "default"}
size="sm"
disabled={!canLaunch}
className={!canLaunch ? "opacity-50" : ""}
className={cn(
"cursor-pointer",
!canLaunch && "opacity-50",
)}
onClick={() =>
void (isRunning
? onKillProfile(profile)