Show pointer cursor on update buttons (#2132)

This commit is contained in:
Jinjing 2026-05-16 17:46:59 -07:00 committed by GitHub
parent 03c857100c
commit d5560a1e2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 2 deletions

View File

@ -650,7 +650,7 @@ function RichCardContent({
Read the full release notes
</button>
<Button variant="default" size="sm" onClick={onUpdate} className="w-full">
<Button variant="default" size="sm" onClick={onUpdate} className="w-full cursor-pointer">
Update
</Button>
</div>
@ -698,7 +698,12 @@ function SimpleCardContent({
Release notes
</button>
<Button variant="default" size="sm" onClick={onUpdate} className="mt-0.5 w-full">
<Button
variant="default"
size="sm"
onClick={onUpdate}
className="mt-0.5 w-full cursor-pointer"
>
Update
</Button>
</div>