Fix tests
This commit is contained in:
parent
966eb05313
commit
6a478b1165
|
@ -10,8 +10,8 @@
|
|||
type="text" id="display-name"
|
||||
formControlName="display-name" [ngClass]="{ 'input-error': formErrors['display-name'] }"
|
||||
>
|
||||
<div *ngIf="formErrors.display-name" class="form-error">
|
||||
{{ formErrors.display-name }}
|
||||
<div *ngIf="formErrors['display-name']" class="form-error">
|
||||
{{ formErrors['display-name'] }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ import { User } from '@app/shared'
|
|||
templateUrl: './my-account-video-channels.component.html',
|
||||
styleUrls: [ './my-account-video-channels.component.scss' ]
|
||||
})
|
||||
export class MyAccountVideoChannelsComponent implements OnInit{
|
||||
export class MyAccountVideoChannelsComponent implements OnInit {
|
||||
videoChannels: VideoChannel[] = []
|
||||
|
||||
private user: User
|
||||
|
|
Loading…
Reference in New Issue