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 have VWindowItem components used in multiple places and everywhere the components have property disabled="false". Web browser interprets it as true even if it's value is false.
I didn't set it explicitly and I can't find any place where it is set so I make an assumption that it is default behaviour for the component which is totally incorrect and looks like a bug.
Did anyone face the same issue or maybe knows the solution?
<VRow><VCol><VTabsv-model="activeTab" darknext-icon="fas fa-angle-right" prev-icon="fas fa-angle-left" density="default" fixed-tabs><VTabv-for="(tab, key) in tabs" :key="key" :value="key">
{{ tab.title }}
</VTab></VTabs></VCol></VRow><VRow><VColcols="12" class="table-tab"><VWindowv-model="activeTab" style="width: 100%"><VWindowItemv-for="(tab, key) in tabs" :key="key" :value="key"><!-- no "disabled" attribute --><!-- content --></VWindowItem></VWindow></VCol></VRow>
"disabled" was not set explicitly but it appears in generated html
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have VWindowItem components used in multiple places and everywhere the components have property
disabled="false"
. Web browser interprets it as true even if it's value isfalse
.I didn't set it explicitly and I can't find any place where it is set so I make an assumption that it is default behaviour for the component which is totally incorrect and looks like a bug.
Did anyone face the same issue or maybe knows the solution?
"disabled" was not set explicitly but it appears in generated html

Beta Was this translation helpful? Give feedback.
All reactions