mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-22 07:43:01 +00:00
Fixed: Queue header
This commit is contained in:
parent
882b54be61
commit
cfa2f4d4c6
1 changed files with 5 additions and 1 deletions
|
@ -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…
Reference in a new issue