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 = ({ ...@@ -64,7 +64,6 @@ const StandardForm = ({
type="submit" type="submit"
primary={!(submitting || invalid)} primary={!(submitting || invalid)}
disabled={submitting || invalid} disabled={submitting || invalid}
className="mr1"
> >
{submitTitle || (values.id != null ? t`Update` : t`Create`)} {submitTitle || (values.id != null ? t`Update` : t`Create`)}
</Button> </Button>
...@@ -73,6 +72,7 @@ const StandardForm = ({ ...@@ -73,6 +72,7 @@ const StandardForm = ({
type="button" type="button"
disabled={submitting || !dirty} disabled={submitting || !dirty}
onClick={resetForm} onClick={resetForm}
className="ml1"
> >
{t`Reset`} {t`Reset`}
</Button> </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