Skip to content

Commit

Permalink
Only display raw data in signal viewer (#3955)
Browse files Browse the repository at this point in the history
* Only display raw data in signal viewer

* Fixes warning and error in EditEventDialog.vue
  • Loading branch information
mvilanova authored Nov 9, 2023
1 parent f983f79 commit 67b5581
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/dispatch/static/dispatch/src/incident/EditEventDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
v-model="started_at"
class="time-picker"
:timezone="timezone"
@update:modelValue="update_started_at"
@update:model-value="update_started_at"
/>
<span
class="ml-10 time-utc text-caption"
Expand Down Expand Up @@ -114,7 +114,7 @@ export default {
update_started_at(val) {
this.started_at = val
this.started_at_in_utc = val
}
},
},
mounted() {
this.init()
Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/signal/TableInstance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</v-tooltip>
</template>
<template #item.data-table-actions="{ item }">
<raw-signal-viewer :value="item" />
<raw-signal-viewer :value="item.raw" />
</template>
</v-data-table-server>
</v-card>
Expand Down

0 comments on commit 67b5581

Please sign in to comment.