Refactor brightness, contrast, and saturation filters into Vue props.

This commit is contained in:
Julian Stirling 2025-10-21 12:09:33 +01:00
parent 0be62d773d
commit 5c2d61baaa
3 changed files with 28 additions and 28 deletions

View file

@ -101,10 +101,7 @@ export default {
scans: [],
ongoing: null,
selectedScan: null,
osdViewer: null,
brightness: 1,
contrast: 1,
saturation: 1,
osdViewer: null
};
},
@ -222,7 +219,7 @@ export default {
} else {
this.modalError("Scan not stitched for viewing in webapp, please download or stitch");
}
},
}
}
}
</script>
@ -239,10 +236,4 @@ export default {
margin-bottom: 30px;
}
input[type="range"] {
pointer-events: auto;
z-index: 1001;
}
</style>