Fix build
This commit is contained in:
parent
70b40c2ed3
commit
e1807a942f
|
@ -1,6 +1,10 @@
|
|||
import { FormReactive } from '@app/shared'
|
||||
import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
|
||||
|
||||
export abstract class MyAccountVideoChannelEdit extends FormReactive {
|
||||
// We need it even in the create component because it's used in the edit template
|
||||
videoChannelToUpdate: VideoChannel
|
||||
|
||||
abstract isCreation (): boolean
|
||||
abstract getFormButtonTitle (): string
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ export class MyAccountVideoChannelUpdateComponent extends MyAccountVideoChannelE
|
|||
|
||||
error: string
|
||||
|
||||
private videoChannelToUpdate: VideoChannel
|
||||
videoChannelToUpdate: VideoChannel
|
||||
private paramsSub: Subscription
|
||||
|
||||
constructor (
|
||||
|
|
Loading…
Reference in New Issue