Skip to content

Commit

Permalink
Update refresh icon to work on 5
Browse files Browse the repository at this point in the history
Font-awesome 5 doesnt have old refresh replaced with sync
  • Loading branch information
richardhallett committed Nov 6, 2020
1 parent cbfd605 commit e814a6d
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions app/templates/components/provider-id.hbs
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
<div class="col-md-9 col-md-offset-3 label-small">
Click the circle icon for a new random ID, or the cross icon to delete the random ID and enter a value manually.
Click the refresh icon for a new random ID, or the cross icon to delete the random ID and enter a value manually.
</div>

{{#form.element
{{#form.element
controlType="text"
id="member-id"
label="Member ID"
property="symbol"
helpText="The Member ID is the unique identifier for each member and can't be changed. The Member ID can contain only upper case letters, and must not be longer than 8 characters."
required=false as |el|}}

<div class="input-group-no-float">
{{el.control}}

<span class="input-group-addon refresh-input" title="Refresh" aria-label="Refresh" {{action 'refresh'}}><i class="fas fa-refresh"></i></span>
<span class="input-group-addon clear-input" title="Clear" aria-label="Clear" {{action 'clear'}}><i class="fas fa-times-circle"></i></span>
</div>
{{/form.element}}
<div class="input-group-no-float">
{{el.control}}

<span class="input-group-addon refresh-input" title="Refresh" aria-label="Refresh" {{action 'refresh'}}><i
class="fas fa-sync"></i></span>
<span class="input-group-addon clear-input" title="Clear" aria-label="Clear" {{action 'clear'}}><i
class="fas fa-times-circle"></i></span>
</div>
{{/form.element}}

0 comments on commit e814a6d

Please sign in to comment.