Skip to content

Commit

Permalink
Change event to payload
Browse files Browse the repository at this point in the history
  • Loading branch information
GusevPM committed Aug 17, 2023
1 parent c43814c commit 8f8ff23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "4.5.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
Expand Down
6 changes: 3 additions & 3 deletions src/components/InternalOperation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
>
<v-col :cols="expanded ? 12 : 6">
<span class="overline ml-3">Payload</span>
<MiguelTreeView :miguel="data.event" :network="data.network" openAll />
<MiguelTreeView :miguel="data.payload" :network="data.network" openAll />
</v-col>
</v-row>
</div>
Expand Down Expand Up @@ -360,8 +360,8 @@ export default {
return (
this.data != null &&
this.data !== undefined &&
this.data.event != null &&
this.data.event !== undefined
this.data.payload != null &&
this.data.payload !== undefined
);
},
showDetails() {
Expand Down

0 comments on commit 8f8ff23

Please sign in to comment.