We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0732cd4 commit 492a504Copy full SHA for 492a504
packages/core/src/components/essentials/threshold.ts
@@ -79,8 +79,8 @@ export class Threshold extends Component {
79
80
const { cartesianScales } = this.services;
81
const orientation = cartesianScales.getOrientation();
82
- const getDomainValue = d => cartesianScales.getDomainValue(d);
83
- const getRangeValue = d => cartesianScales.getRangeValue(d);
+ const getDomainValue = (d) => cartesianScales.getDomainValue(d);
+ const getRangeValue = (d) => cartesianScales.getRangeValue(d);
84
const [
85
getXValue,
86
getYValue,
packages/svelte/build.sh
@@ -13,7 +13,7 @@ echo "bundling..."
13
rollup -c
14
15
# copy src directory for Svelte entry
16
-cp -r src/ dist/
+cp -r src/ dist/src
17
18
echo "copying metadata"
19
cp *.md dist/
0 commit comments