mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
fix 7d1df38b0eb4c6cfec2ff0474ed8c4e9c9128118
This commit is contained in:
@@ -185,6 +185,7 @@
|
|||||||
return filteredData.value.slice(start, end);
|
return filteredData.value.slice(start, end);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Frictionless user experience when bigger than maxTableSize
|
||||||
const totalItems = computed(() => {
|
const totalItems = computed(() => {
|
||||||
const length = filteredData.value.length;
|
const length = filteredData.value.length;
|
||||||
const max = vrcxStore.maxTableSize;
|
const max = vrcxStore.maxTableSize;
|
||||||
|
|||||||
@@ -396,7 +396,7 @@ export const useGameLogStore = defineStore('GameLog', () => {
|
|||||||
if (!gameLogSearch(entry)) {
|
if (!gameLogSearch(entry)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
gameLogTable.value.data.push(entry);
|
gameLogTable.value.data.push({ ...entry, uid: crypto.randomUUID() });
|
||||||
sweepGameLog();
|
sweepGameLog();
|
||||||
uiStore.notifyMenu('game-log');
|
uiStore.notifyMenu('game-log');
|
||||||
}
|
}
|
||||||
@@ -945,7 +945,7 @@ export const useGameLogStore = defineStore('GameLog', () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
notificationStore.queueGameLogNoty(entry);
|
notificationStore.queueGameLogNoty(entry);
|
||||||
addGameLog({ ...entry, uid: crypto.randomUUID() });
|
addGameLog(entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user