Skip to content

Commit

Permalink
fix: move raw payload below
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed May 23, 2024
1 parent 44cd8ef commit 54b64a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/custom/FrameDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,20 @@
</v-simple-table>
</v-col>
<v-col>
<CCTreeView
class="mt-2"
v-if="value.parsedPayload"
:value="value.parsedPayload"
></CCTreeView>
<span class="text-caption">Raw</span>
<v-textarea
readonly
label="Raw"
hide-details
solo
no-resize
v-model="value.raw"
rows="2"
></v-textarea>
<CCTreeView
class="mt-2"
v-if="value.parsedPayload"
:value="value.parsedPayload"
></CCTreeView>
</v-col>
</v-row>
</template>
Expand Down

0 comments on commit 54b64a1

Please sign in to comment.