mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -04:00
Updating packages & fixing a small issue
This commit is contained in:
parent
e789e735fb
commit
64c9921dca
1726
package-lock.json
generated
1726
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -25,7 +25,7 @@
|
|||||||
"hammerjs": "^2.0.8",
|
"hammerjs": "^2.0.8",
|
||||||
"hls.js": "^0.13.2",
|
"hls.js": "^0.13.2",
|
||||||
"jquery": "^3.5.1",
|
"jquery": "^3.5.1",
|
||||||
"ngx-infinite-scroll": "^9.0.0",
|
"ngx-infinite-scroll": "^9.1.0",
|
||||||
"popper.js": "^1.16.1",
|
"popper.js": "^1.16.1",
|
||||||
"zone.js": "^0.10.3"
|
"zone.js": "^0.10.3"
|
||||||
},
|
},
|
||||||
@ -36,13 +36,10 @@
|
|||||||
"@angular/language-service": "^9.1.12",
|
"@angular/language-service": "^9.1.12",
|
||||||
"@types/bootstrap": "^4.5.0",
|
"@types/bootstrap": "^4.5.0",
|
||||||
"@types/hls.js": "^0.12.6",
|
"@types/hls.js": "^0.12.6",
|
||||||
"@types/jasmine": "^3.5.12",
|
|
||||||
"@types/jasminewd2": "^2.0.8",
|
|
||||||
"@types/jquery": "^3.5.1",
|
"@types/jquery": "^3.5.1",
|
||||||
"@types/node": "^13.13.15",
|
"@types/node": "^13.13.21",
|
||||||
"@types/video.js": "^7.3.10",
|
"@types/video.js": "^7.3.11",
|
||||||
"codelyzer": "^5.2.2",
|
"codelyzer": "^5.2.2",
|
||||||
"protractor": "^7.0.0",
|
|
||||||
"ts-node": "~8.6.2",
|
"ts-node": "~8.6.2",
|
||||||
"tslint": "^5.0.0",
|
"tslint": "^5.0.0",
|
||||||
"typescript": "~3.7.5"
|
"typescript": "~3.7.5"
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
<!--suppress TypeScriptUnresolvedVariable ($event.target.value does exist) -->
|
||||||
<h2 mat-dialog-title>Editing metadata of {{this.show.title}}</h2>
|
<h2 mat-dialog-title>Editing metadata of {{this.show.title}}</h2>
|
||||||
<div matDialogContent class="pb-4">
|
<div matDialogContent class="pb-4">
|
||||||
<mat-accordion>
|
<mat-accordion>
|
||||||
@ -69,7 +70,8 @@
|
|||||||
|
|
||||||
<mat-form-field class="w-100">
|
<mat-form-field class="w-100">
|
||||||
<mat-label>Studio</mat-label>
|
<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">
|
[matAutocomplete]="studioAuto" name="studio">
|
||||||
<mat-autocomplete #studioAuto="matAutocomplete" (optionSelected)="this.show.studio = $event.option.value">
|
<mat-autocomplete #studioAuto="matAutocomplete" (optionSelected)="this.show.studio = $event.option.value">
|
||||||
<mat-option *ngFor="let studio of this.allStudios" [value]="studio">
|
<mat-option *ngFor="let studio of this.allStudios" [value]="studio">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user