Skip to content

Commit c34fba1

Browse files
committed
fix: pictures page added_from filter issue
1 parent 0541fed commit c34fba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/moder/pictures/pictures.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ export class ModerPicturesComponent implements OnDestroy, OnInit {
469469
language: this.#languageService.language,
470470
limit: 18,
471471
options: new PictureListOptions({
472-
addedFrom: this.addedFrom ? parseStringToGrpcDate(this.addedFrom.value) : undefined,
472+
addedFrom: this.addedFrom.value ? parseStringToGrpcDate(this.addedFrom.value) : undefined,
473473
commentTopic: this.comments() === true ? new CommentTopicListOptions({messagesGtZero: true}) : undefined,
474474
dfDistance: this.similar()
475475
? new DfDistanceListOptions({

0 commit comments

Comments
 (0)