feat: allow filtering with null (no) rating
This commit is contained in:
@@ -13,7 +13,7 @@ export type Article = {
|
||||
name: string;
|
||||
tags: string[];
|
||||
meta: {
|
||||
status: "finished" | "not-finished";
|
||||
done?: boolean;
|
||||
date: Date;
|
||||
link: string;
|
||||
thumbnail?: string;
|
||||
|
@@ -17,7 +17,6 @@ export type Movie = {
|
||||
average?: string;
|
||||
author: string;
|
||||
rating: number;
|
||||
status: "not-seen" | "watch-again" | "finished";
|
||||
};
|
||||
};
|
||||
|
||||
|
@@ -18,7 +18,7 @@ export type Series = {
|
||||
rating: number;
|
||||
average?: string;
|
||||
thumbnail?: string;
|
||||
status: "not-seen" | "watch-again" | "finished";
|
||||
done?: boolean;
|
||||
};
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user