Fixed History stats actions filter values not being properly implemented.

pull/1437/head^2
morpheus65535 3 years ago
parent 1adab3596c
commit db5d37f5d4

@ -220,7 +220,7 @@ namespace History {
};
type TimeframeOptions = "week" | "month" | "trimester" | "year";
type ActionOptions = 0 | 1 | 2;
type ActionOptions = 1 | 2 | 3;
}
interface SearchResultType {

@ -1,15 +1,15 @@
export const actionOptions: SelectorOption<History.ActionOptions>[] = [
{
label: "Automatically Downloaded",
value: 0,
value: 1,
},
{
label: "Manually Downloaded",
value: 1,
value: 2,
},
{
label: "Upgraded",
value: 2,
value: 3,
},
];

Loading…
Cancel
Save