Skip to content

Commit ee610c8

Browse files
committed
Fixed show parent exception button in sidebar and log tab not working.
1 parent 1f63323 commit ee610c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/request.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)