Fix nav dot icon

This commit is contained in:
Natsumi
2025-11-02 21:21:18 +11:00
parent aa61f5a073
commit 0bc49f7d50
5 changed files with 11 additions and 11 deletions

View File

@@ -775,7 +775,7 @@
"previous_display_names": "Previous Display Names:", "previous_display_names": "Previous Display Names:",
"pronouns": "Pronouns", "pronouns": "Pronouns",
"tags": { "tags": {
"friend_number": "Friend number", "friend_number": "Friend Number",
"vrchat_team": "VRChat Team", "vrchat_team": "VRChat Team",
"18_plus_verified": "18+ Verified", "18_plus_verified": "18+ Verified",
"age_verified": "Age Verified" "age_verified": "Age Verified"

View File

@@ -21,16 +21,16 @@ const routes = [
name: 'friendLocation', name: 'friendLocation',
component: FriendLocation component: FriendLocation
}, },
{ path: '/game-log', name: 'gameLog', component: GameLog }, { path: '/game-log', name: 'game-log', component: GameLog },
{ path: '/player-list', name: 'playerList', component: PlayerList }, { path: '/player-list', name: 'player-list', component: PlayerList },
{ path: '/search', name: 'search', component: Search }, { path: '/search', name: 'search', component: Search },
{ path: '/favorites', name: 'favorites', component: Favorites }, { 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: '/moderation', name: 'moderation', component: Moderation },
{ path: '/notification', name: 'notification', component: Notification }, { path: '/notification', name: 'notification', component: Notification },
{ {
path: '/friend-list', path: '/friend-list',
name: 'friendList', name: 'friend-list',
component: FriendList component: FriendList
}, },
{ {

View File

@@ -979,7 +979,7 @@ export const useFriendStore = defineStore('Friend', () => {
}; };
friendLog.set(id, friendLogCurrent); friendLog.set(id, friendLogCurrent);
database.setFriendLogCurrent(friendLogCurrent); database.setFriendLogCurrent(friendLogCurrent);
uiStore.notifyMenu('friendLog'); uiStore.notifyMenu('friend-log');
deleteFriendRequest(id); deleteFriendRequest(id);
sharedFeedStore.updateSharedFeed(true); sharedFeedStore.updateSharedFeed(true);
userRequest userRequest
@@ -1048,7 +1048,7 @@ export const useFriendStore = defineStore('Friend', () => {
friendLog.delete(id); friendLog.delete(id);
database.deleteFriendLogCurrent(id); database.deleteFriendLogCurrent(id);
if (!appearanceSettingsStore.hideUnfriends) { if (!appearanceSettingsStore.hideUnfriends) {
uiStore.notifyMenu('friendLog'); uiStore.notifyMenu('friend-log');
} }
sharedFeedStore.updateSharedFeed(true); sharedFeedStore.updateSharedFeed(true);
deleteFriend(id); deleteFriend(id);
@@ -1116,7 +1116,7 @@ export const useFriendStore = defineStore('Friend', () => {
friendLog.set(ref.id, friendLogCurrent); friendLog.set(ref.id, friendLogCurrent);
database.setFriendLogCurrent(friendLogCurrent); database.setFriendLogCurrent(friendLogCurrent);
ctx.displayName = ref.displayName; ctx.displayName = ref.displayName;
uiStore.notifyMenu('friendLog'); uiStore.notifyMenu('friend-log');
sharedFeedStore.updateSharedFeed(true); sharedFeedStore.updateSharedFeed(true);
} }
} }
@@ -1161,7 +1161,7 @@ export const useFriendStore = defineStore('Friend', () => {
}; };
friendLog.set(ref.id, friendLogCurrent2); friendLog.set(ref.id, friendLogCurrent2);
database.setFriendLogCurrent(friendLogCurrent2); database.setFriendLogCurrent(friendLogCurrent2);
uiStore.notifyMenu('friendLog'); uiStore.notifyMenu('friend-log');
sharedFeedStore.updateSharedFeed(true); sharedFeedStore.updateSharedFeed(true);
} }
ctx.trustLevel = ref.$trustLevel; ctx.trustLevel = ref.$trustLevel;

View File

@@ -398,7 +398,7 @@ export const useGameLogStore = defineStore('GameLog', () => {
} }
gameLogTable.value.data.push(entry); gameLogTable.value.data.push(entry);
sweepGameLog(); sweepGameLog();
uiStore.notifyMenu('gameLog'); uiStore.notifyMenu('game-log');
} }
async function addGamelogLocationToDatabase(input) { async function addGamelogLocationToDatabase(input) {

View File

@@ -66,7 +66,7 @@ export const useUiStore = defineStore('Ui', () => {
function updateTrayIconNotify(force = false) { function updateTrayIconNotify(force = false) {
const newState = const newState =
notifiedMenus.value.includes('notification') || notifiedMenus.value.includes('notification') ||
notifiedMenus.value.includes('friendLog'); notifiedMenus.value.includes('friend-log');
if (trayIconNotify.value !== newState || force) { if (trayIconNotify.value !== newState || force) {
trayIconNotify.value = newState; trayIconNotify.value = newState;