Skip to content

Commit df912fd

Browse files
committed
AT-3390 Fix the timezone issue by setting the cut-off date to the end of the day
1 parent f5f1318 commit df912fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/new-dashboard/src/components/common/sideBar/BisectDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ const fullClassName = methodName.slice(0, Math.max(0, methodName.lastIndexOf("#"
202202
const className = fullClassName.slice(fullClassName.lastIndexOf(".") + 1)
203203
const targetValue: Ref<string | null> = ref(null)
204204
const excludedCommits = ref("")
205-
const targetJpsCompile = ref(data.branch === "master" && new Date(data.date) <= new Date("2025-10-19"))
205+
const targetJpsCompile = ref(data.branch === "master" && new Date(data.date) <= new Date("2025-10-19T23:59:59.999Z"))
206206
207207
const firstCommit = ref()
208208
const lastCommit = ref()

0 commit comments

Comments
 (0)