Skip to content

Commit

Permalink
#115 fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lana-k committed Jan 7, 2024
1 parent 5123e39 commit 88466ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/views/Main/Workspace/Tabs/Tab/RunResult/Record/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ export default {
}
},
mounted () {
const col = this.selectedColumnIndex
const row = this.currentRowIndex
const cell = this.$refs.table
.querySelector(`td[data-col="${this.selectedColumnIndex}"][data-row="${this.currentRowIndex}"]`)
.querySelector(`td[data-col="${col}"][data-row="${row}"]`)
if (cell) {
this.selectCell(cell)
}
Expand Down

0 comments on commit 88466ec

Please sign in to comment.