You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't be able to understand why, but if I remove the v-if="selectedLength > 0" then my check and uncheck on the boxes works perfectly fine.
however when I need to actually use the information being checked and unchecked, it seems like its basically freezing my app. I can't even use my sort by ascending/descending but as soon as I remove v-if="selectedLength" the problem resolves itself.
The text was updated successfully, but these errors were encountered:
So from what I can tell the issue is when handleSelectChange affects any data point that is being rendered, even if whats being rendered is passed through a computed property
<div v-if="selectedLength > 0" style="text-align: center;">Test</div>
I haven't be able to understand why, but if I remove the
v-if="selectedLength > 0"
then my check and uncheck on the boxes works perfectly fine.however when I need to actually use the information being checked and unchecked, it seems like its basically freezing my app. I can't even use my sort by ascending/descending but as soon as I remove v-if="selectedLength" the problem resolves itself.
The text was updated successfully, but these errors were encountered: