v0.1.26 - 빈 날짜 이동 시 불필요한 삭제 알림 제거

This commit is contained in:
2026-04-22 11:25:09 +09:00
parent e221254c60
commit 905a0caf75
4 changed files with 8 additions and 4 deletions

View File

@@ -707,7 +707,10 @@ watch(
() => {
if (!plannerGoal.value && planner.value.goalEnabled) {
planner.value.goalEnabled = false
schedulePlannerSyncForRecord(planner.value)
if (hasPlannerContent(planner.value)) {
schedulePlannerSyncForRecord(planner.value)
}
}
},
)