fix: error in workspace patch (#21335)
This commit is contained in:
parent
fbc25d206e
commit
93c8c2d93f
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ def update_workspace(doc, seq, content):
|
|||
doc.sequence_id = seq + 1
|
||||
doc.content = json.dumps(content)
|
||||
doc.public = 0 if doc.for_user else 1
|
||||
doc.title = doc.extends or doc.label
|
||||
doc.title = doc.get("extends") or doc.get("label")
|
||||
doc.extends = ""
|
||||
doc.category = ""
|
||||
doc.onboarding = ""
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue