feat: Add severity media filter (#2323)

This commit is contained in:
Dermot Duffy
2026-01-24 21:25:10 -08:00
committed by GitHub
parent f4e905a7fb
commit c03ddd9a13
22 changed files with 404 additions and 69 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { clone } from 'lodash-es';
import { FolderPathComponent } from '../card-controller/folders/types';
import { FolderConfig } from '../config/schema/folders';
import { Severity } from '../types';
import { Severity } from '../severity';
export enum ViewMediaType {
Clip = 'clip',
+1
View File
@@ -537,6 +537,7 @@ export class UnifiedQueryBuilder {
...(options?.what && { what: options.what }),
...(options?.where && { where: options.where }),
...(options?.reviewed !== undefined && { reviewed: options.reviewed }),
...(options?.severity && { severity: options.severity }),
};
}