nextcloud-vue
nextcloud-vue copied to clipboard
9.x: NcSelect references nonexistent prop/variable 'value'
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 ;-)