From c0c5d988d543d0be6ac1d012f2cb00f81ccda312 Mon Sep 17 00:00:00 2001 From: bilt Date: Wed, 9 Jul 2025 15:17:15 +0800 Subject: [PATCH] remove default value --- comfy_extras/nodes_video.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_extras/nodes_video.py b/comfy_extras/nodes_video.py index 3d3ea8203..d1df30fd1 100644 --- a/comfy_extras/nodes_video.py +++ b/comfy_extras/nodes_video.py @@ -386,10 +386,10 @@ class DisplayLinkNode: def INPUT_TYPES(s): return { "required": { - "url_string": ("STRING", {"multiline": False, "default": "https://www.example.com"}), + "url_string": ("STRING", {"multiline": False}), }, "optional": { - "link_text": ("STRING", {"multiline": False, "default": "Click Here"}), + "link_text": ("STRING", {"multiline": False}), } }