Skip to content

Commit 57d61cb

Browse files
committed
minor
1 parent d5c6e5c commit 57d61cb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Diff for: app/models/user.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ export default DS.Model.extend({
66
name: DS.attr('string'),
77
firstName: DS.attr('string'),
88
lastName: DS.attr('string'),
9-
fullName: function() {
10-
return this.get('firstName')+' '+this.get('lastName');
11-
}.property('firstName', 'lastName'),
9+
fullName: DS.attr('string'),
1210
admin: DS.attr('boolean', {defaultValue: false}),
1311
sudo: DS.attr('boolean', {defaultValue: false}),
1412
domain: DS.belongsTo('domain', {async: true}),

Diff for: app/templates/firstrun/finish.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</tr>
3838
{{/if}}
3939
<tr class="{{if operations.timezone 'positive'}}">
40-
<td><i class="fa fa-fw {{if operations.timezone 'green checkmark' 'loading spinner'}} icon"></i></td>
40+
<td><i class="{{if operations.timezone 'green checkmark' 'loading spinner'}} icon"></i></td>
4141
<td>Set Timezone</td>
4242
<td>{{settings.tzRegion}} ({{settings.tzZone}})</td>
4343
</tr>

0 commit comments

Comments
 (0)