Skip to content

Commit

Permalink
fix: minor style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed May 22, 2024
1 parent 254f68f commit 175080c
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/views/Zniffer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -637,13 +637,6 @@ export default {
this.scrollWrapper.scrollTo(0, this.scrollWrapper.scrollHeight)
}
},
scrollToRow(index) {
const table = this.$refs.framesTable.$el.querySelector('table')
const row = table.rows[index]
if (row) {
row.scrollIntoView(true)
}
},
async onScroll(e) {
// debounce if scrolling fast
if (this.timeoutScroll) {
Expand All @@ -660,7 +653,7 @@ export default {
this.perPage <= this.totalFrames
? this.totalFrames - this.perPage
: rows
}, 100)
}, 50)
},
getTimestamp(timestamp) {
// format timestamp HH:mm:ss.fff
Expand Down

0 comments on commit 175080c

Please sign in to comment.