Skip to content

Commit

Permalink
fix: reorder metadata step action buttons to align with rest of workf…
Browse files Browse the repository at this point in the history
…low (#1210)

Closes: eclipse-pass/main#709
  • Loading branch information
jaredgalanis authored Sep 20, 2023
1 parent 670c57e commit e7173bc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/components/metadata-form/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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()));
},
},
},
};

Expand Down

0 comments on commit e7173bc

Please sign in to comment.