Web: prevent scrollbars when resizing the window

The scrollbars still appear for a split second, but then disappear.
This commit is contained in:
Sybren A. Stüvel 2022-08-01 22:59:03 +02:00
parent 28b92c2994
commit 98ae0b57d8

View File

@ -82,6 +82,11 @@ export default {
this._fetchJob(this.jobID);
this._fetchTask(this.taskID);
window.addEventListener("resize", this._recalcTasksTableHeight);
},
unmounted() {
window.removeEventListener("resize", this._recalcTasksTableHeight);
},
watch: {
jobID(newJobID, oldJobID) {