Fix privacy/channel select on upload

This commit is contained in:
Chocobozzz 2020-09-04 10:47:52 +02:00
parent 865af3fd7b
commit 30b1e10603
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 6 additions and 4 deletions

View File

@ -185,9 +185,9 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
this.form.patchValue({
name,
privacy,
privacy: this.firstStepPrivacyId,
nsfw,
channelId,
channelId: this.firstStepChannelId,
previewfile: this.previewfileUpload
})

View File

@ -4,6 +4,7 @@
[(ngModel)]="selectedId"
(ngModelChange)="onModelChange()"
[clearable]="clearable"
[labelForId]="labelForId"
[searchable]="searchable"
bindLabel="label"

View File

@ -1,5 +1,5 @@
import { Component, Input, forwardRef } from '@angular/core'
import { NG_VALUE_ACCESSOR, ControlValueAccessor } from '@angular/forms'
import { Component, forwardRef, Input } from '@angular/core'
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'
export type SelectOptionsItem = {
id: string | number
@ -26,6 +26,7 @@ export class SelectOptionsComponent implements ControlValueAccessor {
@Input() clearable = false
@Input() searchable = false
@Input() groupBy: string
@Input() labelForId: string
selectedId: number | string