Fixed: Queue header

pull/7150/head
Mark McDowall 6 months ago committed by GitHub
parent 882b54be61
commit cfa2f4d4c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -78,7 +78,11 @@ export default function Link<C extends ElementType = 'button'>({
return (
<Component
type={type || 'button'}
type={
component === 'button' || component === 'input'
? type || 'button'
: type
}
target={target}
className={linkClass}
disabled={isDisabled}

Loading…
Cancel
Save