Skip to content
Snippets Groups Projects
Unverified Commit 6cb75abb authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

switch margin order on StandardForm buttons (#9951)

parent ab60885a
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,6 @@ const StandardForm = ({
type="submit"
primary={!(submitting || invalid)}
disabled={submitting || invalid}
className="mr1"
>
{submitTitle || (values.id != null ? t`Update` : t`Create`)}
</Button>
......@@ -73,6 +72,7 @@ const StandardForm = ({
type="button"
disabled={submitting || !dirty}
onClick={resetForm}
className="ml1"
>
{t`Reset`}
</Button>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment