Live method is calling mine action

Hi everyone i have a case where when i change the value of the component that is live mine action is called like i press the button, how i can stop that.
Mine form
Solution
Solve it but with work around
 @if (static::$isRender)
        <div wire:ignore>
            @if ($this->displayTable)
                <h1>{{ $this->outputText }}</h1>
                {{ $this->table }}
            @endif
        </div>
    @else
        <div>
            @if ($this->displayTable)
                <h1>{{ $this->outputText }}</h1>
                {{ $this->table }}
            @endif
        </div>
    @endif  
Was this page helpful?