1
0
Fork 0

Fix build

This commit is contained in:
Chocobozzz 2019-12-05 10:40:09 +01:00
parent 5197732bce
commit 03aff3c6f6
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 23 additions and 24 deletions

View File

@ -119,6 +119,28 @@ export class SearchFiltersComponent implements OnInit {
this.filtered.emit(this.advancedSearch)
}
reset () {
this.advancedSearch.reset()
this.durationRange = undefined
this.publishedDateRange = undefined
this.originallyPublishedStartYear = undefined
this.originallyPublishedEndYear = undefined
this.inputUpdated()
}
resetField (fieldName: string, value?: any) {
this.advancedSearch[fieldName] = value
}
resetLocalField (fieldName: string, value?: any) {
this[fieldName] = value
this.inputUpdated()
}
resetOriginalPublicationYears () {
this.originallyPublishedStartYear = this.originallyPublishedEndYear = undefined
}
private loadOriginallyPublishedAtYears () {
this.originallyPublishedStartYear = this.advancedSearch.originallyPublishedStartDate
? new Date(this.advancedSearch.originallyPublishedStartDate).getFullYear().toString()
@ -234,27 +256,4 @@ export class SearchFiltersComponent implements OnInit {
this.advancedSearch.startDate = date.toISOString()
}
private reset () {
this.advancedSearch.reset()
this.durationRange = undefined
this.publishedDateRange = undefined
this.originallyPublishedStartYear = undefined
this.originallyPublishedEndYear = undefined
this.inputUpdated()
}
private resetField (fieldName: string, value?: any) {
this.advancedSearch[fieldName] = value
}
private resetLocalField (fieldName: string, value?: any) {
this[fieldName] = value
this.inputUpdated()
}
private resetOriginalPublicationYears () {
this.originallyPublishedStartYear = this.originallyPublishedEndYear = undefined
}
}

View File

@ -96,7 +96,7 @@ export class VideoShareComponent {
if (!this.includeVideoInPlaylist) return base
return base + '?videoId=' + this.video.uuid
return base + '?videoId=' + this.video.uuid
}
notSecure () {