Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
Show mapping of variables which were available within this frame
Browse files Browse the repository at this point in the history
  • Loading branch information
chorry authored Dec 7, 2022
1 parent 7f81262 commit 772d935
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions resources/js/Components/Sentry/UI/File.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
<div class="sentry-file__row-number">{{ file.lineno + i + 1 }}.</div>
<pre class="sentry-file__row-text">{{ line }}</pre>
</div>
<div class="event-table" v-if="file.vars">
<div class="event-table__row" v-for="(v, k) in file.vars">
<div class="event-table__cell-name">{{ k }}</div>
<div class="event-table__cell-value">{{ v }}</div>
</div>
</div>
</div>
</div>
</template>
Expand Down

0 comments on commit 772d935

Please sign in to comment.