Skip to content

Commit

Permalink
fix: update variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Sep 4, 2024
1 parent 796a009 commit 4fcb693
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ function openContextMenu(event: MouseEvent) {

<style lang="scss" module>
.node {
--canvas-node--vertical-handles: max(
--canvas-node--max-vertical-handles: max(
var(--canvas-node--main-input-count),
var(--canvas-node--main-output-count),
1
);
--canvas-node--height: calc(100px + max(0, var(--canvas-node--vertical-handles) - 3) * 42px);
--canvas-node--height: calc(100px + max(0, var(--canvas-node--max-vertical-handles) - 3) * 42px);
--canvas-node--width: 100px;
--canvas-node-border-width: 2px;
--configurable-node--min-input-count: 4;
Expand Down

0 comments on commit 4fcb693

Please sign in to comment.