main user profile avatar fix

This commit is contained in:
nixa 2016-04-27 11:06:16 +03:00
parent c78c5299e2
commit ce4671f81f
3 changed files with 6 additions and 3 deletions

View file

@ -1,11 +1,13 @@
import {Component, ViewEncapsulation} from 'angular2/core';
import {MsgCenter} from '../msgCenter';
import {ProfilePicturePipe} from '../pipes/image/profile-picture.pipe';
@Component({
selector: 'page-top',
styles: [ require('./pageTop.scss') ],
template: require('./pageTop.html'),
directives: [MsgCenter]
directives: [MsgCenter],
pipes: [ProfilePicturePipe]
})
export class PageTop {}