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",
|
||||
"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"
|
||||
|
@ -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>
|
||||
@ -11,7 +12,7 @@
|
||||
<mat-label>Title</mat-label>
|
||||
<input matInput [(ngModel)]="this.show.title" name="title">
|
||||
</mat-form-field>
|
||||
|
||||
|
||||
<mat-form-field class="w-100">
|
||||
<mat-label>Aliases</mat-label>
|
||||
<mat-chip-list #aliasList>
|
||||
@ -22,7 +23,7 @@
|
||||
<input #aliasInput placeholder="New alias..." [matChipInputFor]="aliasList" (matChipInputTokenEnd)="addAlias($event)" />
|
||||
</mat-chip-list>
|
||||
</mat-form-field>
|
||||
|
||||
|
||||
<mat-form-field class="w-100">
|
||||
<mat-label>Overview</mat-label>
|
||||
<textarea matInput [(ngModel)]="this.show.overview" name="overview"></textarea>
|
||||
@ -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">
|
||||
|
Loading…
x
Reference in New Issue
Block a user