Skip to content

Commit

Permalink
fix: remove edges glitch (langflow-ai#3689)
Browse files Browse the repository at this point in the history
fix: Update transition property in App.css

The transition property in App.css has been updated to only transition the color property instead of all properties. This change improves performance by reducing unnecessary transitions.
  • Loading branch information
anovazzi1 authored and diogocabral committed Nov 26, 2024
1 parent 082ec59 commit 601a1a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ body {

.react-flow__edge .react-flow__edge-path {
stroke: var(--connection) !important;
transition: all;
transition: color;
transition-duration: 150ms;
}

Expand Down

0 comments on commit 601a1a5

Please sign in to comment.