mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-11-19 23:43:45 +08:00
微调,无关紧要
This commit is contained in:
@@ -30,7 +30,7 @@ function DateSelectComponent({ currentDate, setCurrentDate }: ComponentProps) {
|
||||
case "ArrowRight":
|
||||
if (currentDate) {
|
||||
const temp_date = addDays(currentDate, 1);
|
||||
if (temp_date < maxDate) {
|
||||
if (temp_date <= maxDate) {
|
||||
setCurrentDate(temp_date);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user