Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ayon_api/_api_helpers/lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,11 @@ def create_entity_list_item(
"""
if item_id is None:
item_id = create_entity_id()

data = data or {}
Comment thread
iLLiCiTiT marked this conversation as resolved.
Outdated
kwargs = {
"id": item_id,
"entityId": list_id,
"entityId": data.pop("entityId"),
Comment thread
iLLiCiTiT marked this conversation as resolved.
Outdated
Comment thread
iLLiCiTiT marked this conversation as resolved.
Outdated
}
for key, value in (
("position", position),
Expand Down
Loading