File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ export default DS.Model.extend({
6
6
name : DS . attr ( 'string' ) ,
7
7
firstName : DS . attr ( 'string' ) ,
8
8
lastName : DS . attr ( 'string' ) ,
9
- fullName : function ( ) {
10
- return this . get ( 'firstName' ) + ' ' + this . get ( 'lastName' ) ;
11
- } . property ( 'firstName' , 'lastName' ) ,
9
+ fullName : DS . attr ( 'string' ) ,
12
10
admin : DS . attr ( 'boolean' , { defaultValue : false } ) ,
13
11
sudo : DS . attr ( 'boolean' , { defaultValue : false } ) ,
14
12
domain : DS . belongsTo ( 'domain' , { async : true } ) ,
Original file line number Diff line number Diff line change 37
37
</tr >
38
38
{{ /if }}
39
39
<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 >
41
41
<td >Set Timezone</td >
42
42
<td >{{ settings.tzRegion }} ({{ settings.tzZone }} )</td >
43
43
</tr >
You can’t perform that action at this time.
0 commit comments