From b156f18f07d2c96e9963ee048d38072b02093b02 Mon Sep 17 00:00:00 2001 From: sjt-rvx <72554834+sjt-rvx@users.noreply.github.com> Date: Wed, 2 Jul 2025 10:16:42 +0000 Subject: [PATCH] Update client/ayon_core/tools/sceneinventory/model.py Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> --- client/ayon_core/tools/sceneinventory/model.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/client/ayon_core/tools/sceneinventory/model.py b/client/ayon_core/tools/sceneinventory/model.py index 52d2a94d05..fac1e52b50 100644 --- a/client/ayon_core/tools/sceneinventory/model.py +++ b/client/ayon_core/tools/sceneinventory/model.py @@ -144,9 +144,13 @@ class InventoryModel(QtGui.QStandardItemModel): ) formatting_data = { - "product": repre_info.product_name, - "productType": repre_info.product_type, - "representation": repre_info.representation_name + "product": { + "name": repre_info.product_name, + "type": repre_info.product_type, + }, + "representation": { + "name": repre_info.representation_name, + } } formatting_data.update(folder_data) return formatting_data