Skip to content

Commit 1802c52

Browse files
committed
Merge branches 'fix-floating-point-values-58' and 'fix-disable-label-click-57' into main
2 parents c692484 + e764d43 commit 1802c52

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/RangePips.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
};
5656
5757
function labelClick(val) {
58-
moveHandle( undefined, val );
58+
if ( !disabled ) {
59+
moveHandle( undefined, val );
60+
}
5961
}
6062
</script>
6163

0 commit comments

Comments
 (0)