Skip to content

Commit 4eef454

Browse files
authored
Correctly toggle context and extra in the LogViewer (#872)
1 parent 3fcc8dc commit 4eef454

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/routes/LogViewerRoute.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,11 @@ export default {
196196
},
197197
198198
toggleContext(k) {
199-
this.$set(this.showContext, k, !this.showContext[k]);
199+
this.showContext[k] = !this.showContext[k];
200200
},
201201
202202
toggleExtra(k) {
203-
this.$set(this.showExtra, k, !this.showExtra[k]);
203+
this.showExtra[k] = !this.showExtra[k];
204204
},
205205
206206
countOptions(key, options = {}) {

0 commit comments

Comments
 (0)