mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
Fix nav dot icon
This commit is contained in:
@@ -775,7 +775,7 @@
|
||||
"previous_display_names": "Previous Display Names:",
|
||||
"pronouns": "Pronouns",
|
||||
"tags": {
|
||||
"friend_number": "Friend number",
|
||||
"friend_number": "Friend Number",
|
||||
"vrchat_team": "VRChat Team",
|
||||
"18_plus_verified": "18+ Verified",
|
||||
"age_verified": "Age Verified"
|
||||
|
||||
@@ -21,16 +21,16 @@ const routes = [
|
||||
name: 'friendLocation',
|
||||
component: FriendLocation
|
||||
},
|
||||
{ path: '/game-log', name: 'gameLog', component: GameLog },
|
||||
{ path: '/player-list', name: 'playerList', component: PlayerList },
|
||||
{ path: '/game-log', name: 'game-log', component: GameLog },
|
||||
{ path: '/player-list', name: 'player-list', component: PlayerList },
|
||||
{ path: '/search', name: 'search', component: Search },
|
||||
{ path: '/favorites', name: 'favorites', component: Favorites },
|
||||
{ path: '/friend-log', name: 'friendLog', component: FriendLog },
|
||||
{ path: '/friend-log', name: 'friend-log', component: FriendLog },
|
||||
{ path: '/moderation', name: 'moderation', component: Moderation },
|
||||
{ path: '/notification', name: 'notification', component: Notification },
|
||||
{
|
||||
path: '/friend-list',
|
||||
name: 'friendList',
|
||||
name: 'friend-list',
|
||||
component: FriendList
|
||||
},
|
||||
{
|
||||
|
||||
@@ -979,7 +979,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
};
|
||||
friendLog.set(id, friendLogCurrent);
|
||||
database.setFriendLogCurrent(friendLogCurrent);
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
deleteFriendRequest(id);
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
userRequest
|
||||
@@ -1048,7 +1048,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
friendLog.delete(id);
|
||||
database.deleteFriendLogCurrent(id);
|
||||
if (!appearanceSettingsStore.hideUnfriends) {
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
}
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
deleteFriend(id);
|
||||
@@ -1116,7 +1116,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
friendLog.set(ref.id, friendLogCurrent);
|
||||
database.setFriendLogCurrent(friendLogCurrent);
|
||||
ctx.displayName = ref.displayName;
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
}
|
||||
}
|
||||
@@ -1161,7 +1161,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
};
|
||||
friendLog.set(ref.id, friendLogCurrent2);
|
||||
database.setFriendLogCurrent(friendLogCurrent2);
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
}
|
||||
ctx.trustLevel = ref.$trustLevel;
|
||||
|
||||
@@ -398,7 +398,7 @@ export const useGameLogStore = defineStore('GameLog', () => {
|
||||
}
|
||||
gameLogTable.value.data.push(entry);
|
||||
sweepGameLog();
|
||||
uiStore.notifyMenu('gameLog');
|
||||
uiStore.notifyMenu('game-log');
|
||||
}
|
||||
|
||||
async function addGamelogLocationToDatabase(input) {
|
||||
|
||||
@@ -66,7 +66,7 @@ export const useUiStore = defineStore('Ui', () => {
|
||||
function updateTrayIconNotify(force = false) {
|
||||
const newState =
|
||||
notifiedMenus.value.includes('notification') ||
|
||||
notifiedMenus.value.includes('friendLog');
|
||||
notifiedMenus.value.includes('friend-log');
|
||||
|
||||
if (trayIconNotify.value !== newState || force) {
|
||||
trayIconNotify.value = newState;
|
||||
|
||||
Reference in New Issue
Block a user