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
due to this, date prop on datepicker input is unhappy about the receiving value type and these console errors are generated:
console.error [Vue warn]: Invalid prop: type check failed for prop "date". Expected String, got Event found in ---> <OcDatepicker> <Anonymous> <Root> at warn (node_modules/vue/dist/vue.runtime.common.dev.js:621:15) at assertProp (node_modules/vue/dist/vue.runtime.common.dev.js:1702:5) at validateProp (node_modules/vue/dist/vue.runtime.common.dev.js:1628:5) at loop (node_modules/vue/dist/vue.runtime.common.dev.js:4664:17) at initProps (node_modules/vue/dist/vue.runtime.common.dev.js:4695:33) at initState (node_modules/vue/dist/vue.runtime.common.dev.js:4638:21) at VueComponent.Vue._init (node_modules/vue/dist/vue.runtime.common.dev.js:5001:5)
The text was updated successfully, but these errors were encountered:
Description
Datepicker in
LinkEdit
component is described as:web/packages/web-app-files/src/components/SideBar/Links/PublicLinks/LinkEdit.vue
Lines 40 to 59 in d6afce7
whenever the
input
event is emitted fromoc-datepicker
it sends a date string valuehttps://github.com/owncloud/owncloud-design-system/blob/490bd01a4cdd46d84f881ec04f0de700af10621f/src/components/OcDatepicker.vue#L61
but inside link edit, that
input
event is watched to set thatevent
to the form valueweb/packages/web-app-files/src/components/SideBar/Links/PublicLinks/LinkEdit.vue
Line 49 in d6afce7
due to this,
date
prop on datepicker input is unhappy about the receiving value type and these console errors are generated:The text was updated successfully, but these errors were encountered: