fix: Missing .value led to the release dot always showing (#5500)

This commit is contained in:
Alexander Brown
2025-09-11 17:11:55 -07:00
committed by GitHub
parent ef7575b8d6
commit 54cbf42a84

View File

@@ -88,8 +88,8 @@ const { shouldShowRedDot: shouldShowConflictRedDot, markConflictsAsSeen } =
useConflictAcknowledgment()
// Use either release red dot or conflict red dot
const shouldShowRedDot = computed(() => {
const releaseRedDot = showReleaseRedDot
const shouldShowRedDot = computed((): boolean => {
const releaseRedDot = showReleaseRedDot.value
return releaseRedDot || shouldShowConflictRedDot.value
})