Skip to content

Commit d31ce7a

Browse files
Merge pull request #170 from CodeForPhilly/bugfix/zbl-builderrors
Bugfix/zbl builderrors
2 parents 8dfeb2a + f8a5fd5 commit d31ce7a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

helm-chart/templates/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ metadata:
55
labels:
66
{{- include "helm-chart.labels" . | nindent 4 }}
77
data:
8-
NODE_OPTIONS: "--openssl-legacy-provider --max-old-space-size=768"
8+
NODE_OPTIONS: "--openssl-legacy-provider --max-old-space-size=3072"

src/components/GardenPlanner.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ const {
112112
const handlePaletteDragStart = (event: PointerEvent, plantId: string) => {
113113
// Forward the drag start to the canvas component
114114
if (canvasRef.value && 'startPaletteDrag' in canvasRef.value) {
115-
(canvasRef.value as { startPaletteDrag: (event: PointerEvent, plantId: string) => void }).startPaletteDrag(event, plantId);
115+
const canvas = canvasRef.value as { startPaletteDrag: (event: PointerEvent, plantId: string) => void };
116+
canvas.startPaletteDrag(event, plantId);
116117
}
117118
};
118119
</script>

0 commit comments

Comments
 (0)