From 85e285e7379ab2c49d17a0d6949cdad01a33356e Mon Sep 17 00:00:00 2001 From: sm4640 Date: Mon, 29 Dec 2025 14:01:39 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix:=20[dev]=20=EB=85=B8?= =?UTF-8?q?=EC=BD=94=EB=93=9C=ED=88=B4=20element=5Fid=20=ED=83=80=EC=9E=85?= =?UTF-8?q?=20int=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nocodetools/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nocodetools/models.py b/nocodetools/models.py index 8393e6c..ce44b8e 100644 --- a/nocodetools/models.py +++ b/nocodetools/models.py @@ -5,7 +5,7 @@ import mongoengine as me class Element(me.EmbeddedDocument): - element_id = me.StringField() + element_id = me.IntField() element_type = me.StringField() content = me.StringField() css = me.DictField()