mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 08:43:50 +02:00
Fixes
This commit is contained in:
@@ -46,9 +46,12 @@ export function useDateNavigation(allDateOfActivity, reloadData) {
|
||||
const newIdx = allDateOfActivityArray.value.findIndex((date) =>
|
||||
date.isBefore(selectedDate.value, 'day')
|
||||
);
|
||||
selectedDate.value = allDateOfActivityArray.value[newIdx].toDate();
|
||||
reloadData();
|
||||
return;
|
||||
if (newIdx !== -1) {
|
||||
selectedDate.value =
|
||||
allDateOfActivityArray.value[newIdx].toDate();
|
||||
reloadData();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (idx !== -1) {
|
||||
|
||||
Reference in New Issue
Block a user