Skip to content

Commit

Permalink
flip arrow for the assignable user property in CallAction body preview
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Oct 15, 2024
1 parent 0bc934f commit eedfdd7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/project-editor/flow/components/actions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2282,7 +2282,11 @@ export class CallActionActionComponent extends ActionComponent {
<pre key={userProperty.name}>
<>
{userProperty.displayName || userProperty.name}
<LeftArrow />
{userProperty.assignable ? (
<RightArrow />
) : (
<LeftArrow />
)}
{this.userPropertyValues.values[userProperty.id] ||
""}
</>
Expand Down

0 comments on commit eedfdd7

Please sign in to comment.