fix: Column spaceing and selection

This commit is contained in:
2025-08-06 03:19:51 +02:00
parent 57e8cea5d0
commit 2925a5a237
3 changed files with 45 additions and 49 deletions

View File

@@ -119,6 +119,15 @@ export class ResultTableComponent implements OnInit, OnDestroy {
}
}
public get tableHeaderPosition(): string {
if (!this.viewport) {
return '-0px'
}
const offset = this.viewport.getOffsetToRenderedContentStart()
return `-${offset}px`
}
@HostListener('window:resize', ['$event'])
onResize() {
if (this.viewport) {