Skip to content

Commit

Permalink
re
Browse files Browse the repository at this point in the history
  • Loading branch information
brianParcel committed Feb 15, 2018
1 parent 1d04984 commit f46287f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/models/model.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as _ from 'browser-model';
import * as _ from 'underscore';

export class Model{

Expand Down
4 changes: 2 additions & 2 deletions src/app/models/user.model.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Model } from 'bamfstore';
import { Model } from 'browser-model';
// import { Model } from './model';
import { UtilService } from './../services/util.service';
import { AppInjector } from './../app.module';
Expand Down Expand Up @@ -39,7 +39,7 @@ export class User extends Model {
this.last = split[1];
}

get full_name{
get full_name {
let full_name = '';
if(this.first) full_name = `${full_name}${this.first}`;
if(this.last) full_name = `${full_name} ${this.last}`;
Expand Down

0 comments on commit f46287f

Please sign in to comment.