Updating packages & fixing a small issue

This commit is contained in:
Zoe Roux 2020-09-20 23:17:07 +02:00
parent e789e735fb
commit 64c9921dca
3 changed files with 646 additions and 1097 deletions

1726
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -25,7 +25,7 @@
"hammerjs": "^2.0.8",
"hls.js": "^0.13.2",
"jquery": "^3.5.1",
"ngx-infinite-scroll": "^9.0.0",
"ngx-infinite-scroll": "^9.1.0",
"popper.js": "^1.16.1",
"zone.js": "^0.10.3"
},
@ -36,13 +36,10 @@
"@angular/language-service": "^9.1.12",
"@types/bootstrap": "^4.5.0",
"@types/hls.js": "^0.12.6",
"@types/jasmine": "^3.5.12",
"@types/jasminewd2": "^2.0.8",
"@types/jquery": "^3.5.1",
"@types/node": "^13.13.15",
"@types/video.js": "^7.3.10",
"@types/node": "^13.13.21",
"@types/video.js": "^7.3.11",
"codelyzer": "^5.2.2",
"protractor": "^7.0.0",
"ts-node": "~8.6.2",
"tslint": "^5.0.0",
"typescript": "~3.7.5"

View File

@ -1,3 +1,4 @@
<!--suppress TypeScriptUnresolvedVariable ($event.target.value does exist) -->
<h2 mat-dialog-title>Editing metadata of {{this.show.title}}</h2>
<div matDialogContent class="pb-4">
<mat-accordion>
@ -69,7 +70,8 @@
<mat-form-field class="w-100">
<mat-label>Studio</mat-label>
<input matInput [value]="this.show.studio?.name" (input)="this.show.studio = {slug: null, name: $event.target.value};"
<input matInput [value]="this.show.studio?.name"
(input)="this.show.studio = {id: 0, slug: null, name: $event.target.value};"
[matAutocomplete]="studioAuto" name="studio">
<mat-autocomplete #studioAuto="matAutocomplete" (optionSelected)="this.show.studio = $event.option.value">
<mat-option *ngFor="let studio of this.allStudios" [value]="studio">