fix: correct node CATEGORY typo Datasete -> Dataset Gates

Menu category on all nodes now reads 'Dataset Gates', matching the repo name.
Internal identifiers (routes, socket events, extension ids) left unchanged.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-01 14:08:33 +02:00
parent 5b92e9b338
commit 726cd7bf17
7 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ def mask_from_stash(data, image):
class ImageGate:
CATEGORY = "Datasete Gates"
CATEGORY = "Dataset Gates"
FUNCTION = "run"
RETURN_TYPES = ("MASK",) + ("IMAGE",) * MAX_ROUTES
RETURN_NAMES = ("mask",) + tuple(f"route_{i + 1}" for i in range(MAX_ROUTES))