Skip to content

Commit

Permalink
Move Validation setting to the bottom in Fragment Input Definition vi…
Browse files Browse the repository at this point in the history
…ew (#6849)

* Move Validation setting to the bottom in Fragment Input Definition view

---------

Co-authored-by: bartektartanus <[email protected]>
  • Loading branch information
bartektartanus and bartektartanus authored Sep 12, 2024
1 parent 09dca19 commit d54c0d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@ export const DefaultVariant = ({ item, onChange, path, variableTypes, readOnly,
label=""
/>
</FormControl>
<ValidationsFields
path={path}
onChange={onChange}
item={item}
variableTypes={variableTypes}
readOnly={readOnly}
errors={errors}
/>
<InitialValue
onChange={onChange}
item={item}
Expand All @@ -57,6 +49,14 @@ export const DefaultVariant = ({ item, onChange, path, variableTypes, readOnly,
className={nodeInput}
/>
</FormControl>
<ValidationsFields
path={path}
onChange={onChange}
item={item}
variableTypes={variableTypes}
readOnly={readOnly}
errors={errors}
/>
</SettingsWrapper>
);
};

0 comments on commit d54c0d3

Please sign in to comment.