disabled button still clickable
I'm using a button blade component, but disabling it makes the appearance change but not the interactivity. The button looks to be disabled, but when you click on it, it still triggers the modal.
2 Replies
I've also tried just using
disabled
not :disabled="true"
.
same resultmaybe because of slot? 🤔
try to put the button outside the modal and use
<x-filament::icon-button @click="$dispatch('open-modal', {id: 'myModal'})" ... />