mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 22:06:06 +02:00
fix
This commit is contained in:
@@ -1,22 +1,29 @@
|
||||
const groupDialogSortingOptions = {
|
||||
joinedAtDesc: {
|
||||
const groupDialogSortingOptions = [
|
||||
{
|
||||
name: 'dialog.group.members.sorting.joined_at_desc',
|
||||
value: 'joinedAt:desc'
|
||||
},
|
||||
joinedAtAsc: {
|
||||
{
|
||||
name: 'dialog.group.members.sorting.joined_at_asc',
|
||||
value: 'joinedAt:asc'
|
||||
}
|
||||
];
|
||||
|
||||
const FILTER_EVERYONE = {
|
||||
name: 'dialog.group.members.filters.everyone',
|
||||
id: null
|
||||
};
|
||||
|
||||
const groupDialogFilterOptions = {
|
||||
everyone: {
|
||||
name: 'dialog.group.members.filters.everyone',
|
||||
id: null
|
||||
},
|
||||
usersWithNoRole: {
|
||||
name: 'dialog.group.members.filters.users_with_no_role',
|
||||
id: ''
|
||||
}
|
||||
const FILTER_NO_ROLE = {
|
||||
name: 'dialog.group.members.filters.users_with_no_role',
|
||||
id: ''
|
||||
};
|
||||
|
||||
const groupDialogFilterOptions = [FILTER_EVERYONE, FILTER_NO_ROLE];
|
||||
|
||||
export {
|
||||
groupDialogSortingOptions,
|
||||
groupDialogFilterOptions,
|
||||
FILTER_EVERYONE,
|
||||
FILTER_NO_ROLE
|
||||
};
|
||||
export { groupDialogSortingOptions, groupDialogFilterOptions };
|
||||
|
||||
Reference in New Issue
Block a user