Skip to content

Commit

Permalink
Add button type to the two-step-button buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
DingoEatingFuzz committed Apr 20, 2018
1 parent 1d19d82 commit 10c9e7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/app/templates/components/two-step-button.hbs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{{#if isIdle}}
<button data-test-idle-button class="button is-warning is-small is-inline" onclick={{action "promptForConfirmation"}}>
<button data-test-idle-button type="button" class="button is-warning is-small is-inline" onclick={{action "promptForConfirmation"}}>
{{idleText}}
</button>
{{else if isPendingConfirmation}}
<span data-test-confirmation-message class="confirmation-text">{{confirmationMessage}}</span>
<button data-test-cancel-button class="button is-dark is-outlined is-small is-inline" onclick={{action (queue
<button data-test-cancel-button type="button" class="button is-dark is-outlined is-small is-inline" onclick={{action (queue
(action "setToIdle")
(action onCancel)
)}}>
Expand Down

0 comments on commit 10c9e7a

Please sign in to comment.