bestguy / sveltestrap

Bootstrap 4 & 5 components for Svelte
https://sveltestrap.js.org
MIT License
1.3k stars 183 forks source link

Disable Button Link #405

Open cowglow opened 2 years ago

cowglow commented 2 years ago

When the <Button> component has an href property, the disable props doesn't work.

<Button href="path-to-route.html" disabled>Disabled Button</Button>
bestguy commented 2 years ago

Thanks @cowglow Hmm that's an interesting one - a tags don't have a disabled attribute, so we could either not forward the href when disabled, or add some JS to eat the click event.