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
The NcSelect component in 9.x has a computed property inputRequired() which references this.value which is not defined. It probably should be this.modelValue.
This results in warnings in the browser console:
Vue warn]: Property "value" was accessed during render but is not defined on instance.
at <Anonymous class="select select-max" modelValue=null components= {Deselect: {…}} ... >
at <NcSelect ...
Additionally, the code probably won't work as expected ;-)
The text was updated successfully, but these errors were encountered:
The NcSelect component in 9.x has a computed property
inputRequired()
which referencesthis.value
which is not defined. It probably should bethis.modelValue
.This results in warnings in the browser console:
Additionally, the code probably won't work as expected ;-)
The text was updated successfully, but these errors were encountered: