From e7173bc9e3869a42eda03bb07ab8470eff010b44 Mon Sep 17 00:00:00 2001 From: Jared Galanis Date: Wed, 20 Sep 2023 10:54:37 -0400 Subject: [PATCH] fix: reorder metadata step action buttons to align with rest of workflow (#1210) Closes: https://github.com/eclipse-pass/main/issues/709 --- app/components/metadata-form/index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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())); + }, + }, }, };