diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-26 17:06:02 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-26 17:06:02 +0200 |
commit | 6a478b11651a5e764337b3e4c02dba83c919a50a (patch) | |
tree | ca7a638c37249b63f3c3276f0e3920d7bd5fe1db /client | |
parent | 966eb053131b052e7fc3b3b3adaf2d27ff05d7a3 (diff) | |
download | PeerTube-6a478b11651a5e764337b3e4c02dba83c919a50a.tar.gz PeerTube-6a478b11651a5e764337b3e4c02dba83c919a50a.tar.zst PeerTube-6a478b11651a5e764337b3e4c02dba83c919a50a.zip |
Fix tests
Diffstat (limited to 'client')
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/my-account/my-account-video-channels/my-account-video-channel-edit.component.html b/client/src/app/my-account/my-account-video-channels/my-account-video-channel-edit.component.html index adc969bdb..d5fb6262a 100644 --- a/client/src/app/my-account/my-account-video-channels/my-account-video-channel-edit.component.html +++ b/client/src/app/my-account/my-account-video-channels/my-account-video-channel-edit.component.html | |||
@@ -10,8 +10,8 @@ | |||
10 | type="text" id="display-name" | 10 | type="text" id="display-name" |
11 | formControlName="display-name" [ngClass]="{ 'input-error': formErrors['display-name'] }" | 11 | formControlName="display-name" [ngClass]="{ 'input-error': formErrors['display-name'] }" |
12 | > | 12 | > |
13 | <div *ngIf="formErrors.display-name" class="form-error"> | 13 | <div *ngIf="formErrors['display-name']" class="form-error"> |
14 | {{ formErrors.display-name }} | 14 | {{ formErrors['display-name'] }} |
15 | </div> | 15 | </div> |
16 | </div> | 16 | </div> |
17 | 17 | ||
diff --git a/client/src/app/my-account/my-account-video-channels/my-account-video-channels.component.ts b/client/src/app/my-account/my-account-video-channels/my-account-video-channels.component.ts index eb04094e1..eeaca11df 100644 --- a/client/src/app/my-account/my-account-video-channels/my-account-video-channels.component.ts +++ b/client/src/app/my-account/my-account-video-channels/my-account-video-channels.component.ts | |||
@@ -13,7 +13,7 @@ import { User } from '@app/shared' | |||
13 | templateUrl: './my-account-video-channels.component.html', | 13 | templateUrl: './my-account-video-channels.component.html', |
14 | styleUrls: [ './my-account-video-channels.component.scss' ] | 14 | styleUrls: [ './my-account-video-channels.component.scss' ] |
15 | }) | 15 | }) |
16 | export class MyAccountVideoChannelsComponent implements OnInit{ | 16 | export class MyAccountVideoChannelsComponent implements OnInit { |
17 | videoChannels: VideoChannel[] = [] | 17 | videoChannels: VideoChannel[] = [] |
18 | 18 | ||
19 | private user: User | 19 | private user: User |