From 5ca53978fcd8165fc24832e8da5b5edd70b3b5bd Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:26:07 +0200 Subject: [PATCH] added missing data to serialization o textdef --- client/ayon_core/lib/attribute_definitions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/ayon_core/lib/attribute_definitions.py b/client/ayon_core/lib/attribute_definitions.py index dd467797f1..8ce270c218 100644 --- a/client/ayon_core/lib/attribute_definitions.py +++ b/client/ayon_core/lib/attribute_definitions.py @@ -488,6 +488,8 @@ class TextDef(AbstractAttrDef): def serialize(self): data = super(TextDef, self).serialize() data["regex"] = self.regex.pattern + data["multiline"] = self.multiline + data["placeholder"] = self.placeholder return data