mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-01 12:43:46 +02:00
add some table loading spinner
This commit is contained in:
@@ -89,7 +89,6 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
!(filter.value && row.type === 'Unfriend')
|
||||
}
|
||||
],
|
||||
pageSize: 20,
|
||||
pageSizeLinked: true
|
||||
});
|
||||
|
||||
|
||||
@@ -73,7 +73,11 @@ export const useSharedFeedStore = defineStore('SharedFeed', () => {
|
||||
onPlayerJoining.value = newOnPlayerJoining;
|
||||
|
||||
sharedFeedData.value = sharedFeedData.value.filter(
|
||||
(ctx) => ctx.type !== 'OnPlayerJoining' && !ctx.isTraveling
|
||||
(ctx) =>
|
||||
!(
|
||||
ctx.type === 'OnPlayerJoining' ||
|
||||
(ctx.type === 'GPS' && ctx.isTraveling)
|
||||
)
|
||||
);
|
||||
sharedFeedData.value.unshift(...onPlayerJoining.value);
|
||||
if (sharedFeedData.value.length > maxEntries) {
|
||||
|
||||
Reference in New Issue
Block a user