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 files prop only notifies on files.*. The files notification is only sent once, when the component is attached and the initial value ([]) is set. For that reason, the only option to watch for changes (unless I'm terribly mistaken) is to use complex observer; observer within property definition simply won't work. Consider making the files array immutable instead of using this.push.
The text was updated successfully, but these errors were encountered:
The
files
prop only notifies onfiles.*
. Thefiles
notification is only sent once, when the component is attached and the initial value ([]
) is set. For that reason, the only option to watch for changes (unless I'm terribly mistaken) is to use complex observer; observer within property definition simply won't work. Consider making thefiles
array immutable instead of usingthis.push
.The text was updated successfully, but these errors were encountered: