mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
fix: render button if href is provided and is disabled
This commit is contained in:
@@ -51,7 +51,7 @@ const Button = ({
|
||||
|
||||
return (
|
||||
<>
|
||||
{!href && (
|
||||
{(!href || (href && disabled)) && (
|
||||
<button
|
||||
{...props}
|
||||
type={type}
|
||||
@@ -68,9 +68,9 @@ const Button = ({
|
||||
</button>
|
||||
)}
|
||||
|
||||
{href && (
|
||||
{href && !disabled && (
|
||||
<Link
|
||||
href={disabled ? '#' : href}
|
||||
href={href}
|
||||
target={target}
|
||||
rel={rel}
|
||||
aria-disabled={disabled}
|
||||
|
||||
Reference in New Issue
Block a user