Skip to content

Commit

Permalink
releasef add meta for blitz
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Oct 1, 2024
1 parent 8a536b1 commit 7fd9b6e
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions frontend/src/constants/meta.ts
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
import type { TFilterName, IMetaFilter } from '@/containers/Meta/types';

export const columnGroups = [
{ field: '0.850', icons: ['rank_2.png', 'rank_4.png', 'rank_6.png'] },
{ field: '0.100', icons: ['rank_7.png', 'rank_8.png'] },
{ field: '0.050', icons: ['rank_9.png', 'rank_10.png'] },
];

export const metaFilter: IMetaFilter[] = [
{
title: 'Bracket',
name: 'bracket',
options: ['Shuffle', '2v2', '3v3', 'Battlegrounds'],
},
{
title: 'Period',
name: 'period',
options: ['Last month', 'Last week', 'Last day', 'This season'],
},
{
title: 'Role',
name: 'role',
options: ['All', 'Melee', 'Ranged', 'Dps', 'Healer', 'Tank'],
},
];

export const defaultFilters: Record<TFilterName, string> = {
bracket: 'Shuffle',
period: 'This season',
role: 'All',
};
import type { TFilterName, IMetaFilter } from '@/containers/Meta/types';

export const columnGroups = [
{ field: '0.850', icons: ['rank_2.png', 'rank_4.png', 'rank_6.png'] },
{ field: '0.100', icons: ['rank_7.png', 'rank_8.png'] },
{ field: '0.050', icons: ['rank_9.png', 'rank_10.png'] },
];

export const metaFilter: IMetaFilter[] = [
{
title: 'Bracket',
name: 'bracket',
options: ['Shuffle', '2v2', '3v3', 'Battlegrounds', 'Blitz'],
},
{
title: 'Period',
name: 'period',
options: ['Last month', 'Last week', 'Last day', 'This season'],
},
{
title: 'Role',
name: 'role',
options: ['All', 'Melee', 'Ranged', 'Dps', 'Healer', 'Tank'],
},
];

export const defaultFilters: Record<TFilterName, string> = {
bracket: 'Shuffle',
period: 'This season',
role: 'All',
};

0 comments on commit 7fd9b6e

Please sign in to comment.