mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-26 09:19:43 +00:00
fix: Missing .value led to the release dot always showing (#5500)
This commit is contained in:
@@ -88,8 +88,8 @@ const { shouldShowRedDot: shouldShowConflictRedDot, markConflictsAsSeen } =
|
|||||||
useConflictAcknowledgment()
|
useConflictAcknowledgment()
|
||||||
|
|
||||||
// Use either release red dot or conflict red dot
|
// Use either release red dot or conflict red dot
|
||||||
const shouldShowRedDot = computed(() => {
|
const shouldShowRedDot = computed((): boolean => {
|
||||||
const releaseRedDot = showReleaseRedDot
|
const releaseRedDot = showReleaseRedDot.value
|
||||||
return releaseRedDot || shouldShowConflictRedDot.value
|
return releaseRedDot || shouldShowConflictRedDot.value
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user