mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 16:53:50 +02:00
fix styles
This commit is contained in:
@@ -275,7 +275,10 @@
|
||||
})
|
||||
);
|
||||
|
||||
const playerListDisplayData = computed(() => currentInstanceUsersData.value ?? []);
|
||||
const playerListDisplayData = computed(() => {
|
||||
const data = currentInstanceUsersData.value;
|
||||
return Array.isArray(data) ? data.slice() : [];
|
||||
});
|
||||
|
||||
const { table: playerListTable } = useVrcxVueTable({
|
||||
persistKey: 'playerList',
|
||||
|
||||
Reference in New Issue
Block a user