diff --git a/app/components/metadata-form/index.js b/app/components/metadata-form/index.js index 4686d0c7..6046c28b 100644 --- a/app/components/metadata-form/index.js +++ b/app/components/metadata-form/index.js @@ -17,13 +17,6 @@ export default Component.extend({ // form ctrls newForm.options.form = { buttons: { - Next: { - label: 'Next', - styles: 'pull-right btn btn-primary next', - click() { - that.nextForm(that.stripEmptyArrays(this.getValue())); - }, - }, Back: { title: 'Back', styles: 'pull-left btn btn-outline-primary', @@ -38,6 +31,13 @@ export default Component.extend({ that.cancel(); }, }, + Next: { + label: 'Next', + styles: 'pull-right btn btn-primary next', + click() { + that.nextForm(that.stripEmptyArrays(this.getValue())); + }, + }, }, };