new_stream_users.handlebars: Upgrade font-awesome icon style.

This commit is contained in:
Aditya Bansal 2017-06-08 10:39:55 +05:30 committed by Tim Abbott
parent a204407983
commit a02937e3b4
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{{! Client-side Mustache template for rendering users in the stream creation modal.}} {{! Client-side Mustache template for rendering users in the stream creation modal.}}
<div id="copy-from-stream-expand-collapse" class="add-user-label"> <div id="copy-from-stream-expand-collapse" class="add-user-label">
<i class="toggle icon-vector-caret-right"></i> <i class="toggle fa fa-caret-right" aria-hidden="true"></i>
<span class="control-label"> <span class="control-label">
{{t "Copy from stream" }} {{t "Copy from stream" }}
</span> </span>
@ -12,7 +12,7 @@
<label class="checkbox add-user-label" data-stream-id="{{this.stream_id}}" data-stream-name="{{this.name}}"> <label class="checkbox add-user-label" data-stream-id="{{this.stream_id}}" data-stream-name="{{this.name}}">
<input type="checkbox" name="stream" value="{{this.name}}" /> <input type="checkbox" name="stream" value="{{this.name}}" />
<span></span> <span></span>
{{this.name}} ( <i class="icon-vector-user"></i> {{this.subscriber_count}}) {{this.name}} ( <i class="fa fa-user" aria-hidden="true"></i> {{this.subscriber_count}})
</label> </label>
{{/each}} {{/each}}
</div> </div>