File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
packages/vue/src/components/ReactiveBase Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ const ReactiveBase = {
3232 } ,
3333 props : {
3434 app : types . string ,
35+ analytics : VueTypes . bool ,
3536 appbaseConfig : types . appbaseConfig ,
3637 enableAppbase : VueTypes . bool . def ( false ) ,
3738 credentials : types . string ,
@@ -140,7 +141,9 @@ const ReactiveBase = {
140141 transformRequest : props . transformRequest ,
141142 transformResponse : props . transformResponse ,
142143 enableAppbase : props . enableAppbase ,
143- analytics : props . appbaseConfig ? props . appbaseConfig . recordAnalytics : false ,
144+ analytics : props . appbaseConfig
145+ ? props . appbaseConfig . recordAnalytics
146+ : props . analytics ,
144147 analyticsConfig : props . appbaseConfig ,
145148 mongodb : props . mongodb ,
146149 endpoint : props . endpoint ,
You can’t perform that action at this time.
0 commit comments