File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export class Request
3434 this . requestData = this . requestData instanceof Object
3535 ? this . createKeypairs ( this . requestData , false ) : this . requestData
3636 this . headers = this . processHeaders ( this . headers )
37- this . log = this . processLog ( this . log )
37+ this . log = shallowReactive ( this . processLog ( this . log ) )
3838 this . postData = this . createKeypairs ( this . postData )
3939 this . queueJobs = this . processQueueJobs ( this . queueJobs )
4040 this . redisCommands = this . processRedisCommands ( this . redisCommands )
@@ -52,7 +52,7 @@ export class Request
5252
5353 this . errorsCount = this . getErrorsCount ( )
5454 this . warningsCount = this . getWarningsCount ( )
55- this . exceptions = this . processExceptions ( )
55+ this . exceptions = shallowReactive ( this . processExceptions ( ) )
5656
5757 this . loadClientMetricsAttempts = 0
5858 }
You can’t perform that action at this time.
0 commit comments