client: allow multi-select of filters with Ctrl and Shift keys

This commit is contained in:
FinalDoom
2021-09-15 06:36:02 -06:00
committed by Jesse Chan
parent af8de75e05
commit 9361b2fa3d
8 changed files with 119 additions and 63 deletions

View File

@@ -1,12 +1,12 @@
const torrentStatusMap = [
'checking',
'seeding',
'complete',
'downloading',
'seeding',
'checking',
'complete',
'stopped',
'error',
'inactive',
'active',
'inactive',
'error',
] as const;
export type TorrentStatus = typeof torrentStatusMap[number];