Skip to content

Commit

Permalink
fix: fix date reactivity
Browse files Browse the repository at this point in the history
  • Loading branch information
nichenqin committed Nov 7, 2024
1 parent 6bf11b1 commit edcb243
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
const isSelected = monthStore.isSelected
const getIsSameMonth = monthStore.getIsSameMonth
let day = getDate(date)
let today = isToday(date)
let _isWeekend = isWeekend(date)
$: day = getDate(date)
$: today = isToday(date)
$: _isWeekend = isWeekend(date)
$: selected = $isSelected(date)
$: isSameMonth = $getIsSameMonth(date)
Expand Down Expand Up @@ -202,7 +202,7 @@
{date}
{r}
readonly={true}
shareId={shareId}
{shareId}
record={aboutToDropRecord}
{displayField}
{field}
Expand Down

0 comments on commit edcb243

Please sign in to comment.