Fix Linux window state, small fixes

This commit is contained in:
Natsumi
2025-08-12 16:16:05 +12:00
parent 4255d58c3a
commit 6c8a87d3cb
14 changed files with 122 additions and 131 deletions

View File

@@ -224,11 +224,13 @@ export const useUserStore = defineStore('User', () => {
fileCreatedAt: ''
},
representedGroup: {
bannerId: '',
bannerUrl: '',
description: '',
discriminator: '',
groupId: '',
iconUrl: '',
id: '',
isRepresenting: false,
memberCount: 0,
memberVisibility: '',
@@ -236,7 +238,8 @@ export const useUserStore = defineStore('User', () => {
ownerId: '',
privacy: '',
shortCode: '',
$thumbnailUrl: ''
$thumbnailUrl: '',
$memberId: ''
},
isRepresentedGroupLoading: false,
joinCount: 0,
@@ -775,10 +778,12 @@ export const useUserStore = defineStore('User', () => {
};
D.isRepresentedGroupLoading = true;
D.representedGroup = {
bannerId: '',
bannerUrl: '',
description: '',
discriminator: '',
groupId: '',
id: '',
iconUrl: '',
isRepresenting: false,
memberCount: 0,
@@ -787,7 +792,8 @@ export const useUserStore = defineStore('User', () => {
ownerId: '',
privacy: '',
shortCode: '',
$thumbnailUrl: ''
$thumbnailUrl: '',
$memberId: ''
};
D.lastSeen = '';
D.joinCount = 0;