feat(lora): remove deprecated defaultInput, use only forceInput

This commit is contained in:
Will Miao
2025-10-21 11:55:51 +08:00
parent 9b1a9ee071
commit 49b9b7a5ea
2 changed files with 0 additions and 2 deletions

View File

@@ -141,7 +141,6 @@ class LoraManagerTextLoader:
"required": { "required": {
"model": ("MODEL",), "model": ("MODEL",),
"lora_syntax": ("STRING", { "lora_syntax": ("STRING", {
"defaultInput": True,
"forceInput": True, "forceInput": True,
"tooltip": "Format: <lora:lora_name:strength> separated by spaces or punctuation" "tooltip": "Format: <lora:lora_name:strength> separated by spaces or punctuation"
}), }),

View File

@@ -21,7 +21,6 @@ class WanVideoLoraSelectFromText:
"merge_lora": ("BOOLEAN", {"default": True, "tooltip": "Merge LoRAs into the model, otherwise they are loaded on the fly. Always disabled for GGUF and scaled fp8 models. This affects ALL LoRAs, not just the current one"}), "merge_lora": ("BOOLEAN", {"default": True, "tooltip": "Merge LoRAs into the model, otherwise they are loaded on the fly. Always disabled for GGUF and scaled fp8 models. This affects ALL LoRAs, not just the current one"}),
"lora_syntax": ("STRING", { "lora_syntax": ("STRING", {
"multiline": True, "multiline": True,
"defaultInput": True,
"forceInput": True, "forceInput": True,
"tooltip": "Connect a TEXT output for LoRA syntax: <lora:name:strength>" "tooltip": "Connect a TEXT output for LoRA syntax: <lora:name:strength>"
}), }),