Skip to content

Commit

Permalink
fix: change class secondary-text-weekend to weekend
Browse files Browse the repository at this point in the history
BREAKING CHANGE: 使用 secondary-text-weekend 自定义样式改为 weekend
  • Loading branch information
HandsomeButterball committed Dec 21, 2022
1 parent 3642100 commit 770731b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
class="primary-text"
[ngStyle]="point.style"
[class.today]="point.additions?.isToday"
[class.weekend]="point.additions?.isWeekend"
*ngFor="let point of view.primaryDatePoints; trackBy: trackBy"
[attr.x]="point.x"
[attr.y]="point.y"
Expand All @@ -20,7 +21,7 @@
class="secondary-text"
[ngStyle]="point.style"
[class.today]="point.additions?.isToday"
[class.secondary-text-weekend]="point.additions?.isWeekend"
[class.weekend]="point.additions?.isWeekend"
[attr.x]="point.x"
[attr.y]="point.y"
>
Expand Down

0 comments on commit 770731b

Please sign in to comment.