Skip to content

Commit 8a4cc8e

Browse files
committed
fix
1 parent e3bf828 commit 8a4cc8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ChessClock.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const isLowTime = (value: number | null | undefined) => {
4949
5050
// 根据时间值的分数部分推导冒号可见性(与倒计时同步,0.5s 亮 / 0.5s 暗)
5151
const colonVisible = (value: number) => {
52-
return (value % 1) < 0.5
52+
return (value % 1) >= 0.5
5353
}
5454
5555
// 基础格式化(无冒号闪烁)

0 commit comments

Comments
 (0)