mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 06:12:19 +01:00
added little change
This commit is contained in:
parent
32a0ffb584
commit
da99281b36
1 changed files with 3 additions and 1 deletions
|
|
@ -2153,7 +2153,9 @@ class SyncToAvalonEvent(BaseEvent):
|
|||
self.ftrack_ents_by_id[ftrack_id] = ftrack_ent
|
||||
|
||||
name = ftrack_ent["name"]
|
||||
ent_path = "/".join([_ent["name"] for _ent in ftrack_ent["link"]])
|
||||
ent_path_items = [_ent["name"] for _ent in ftrack_ent["link"][:-1]]
|
||||
ent_path_items.append("<strong>{}</strong>".format(name))
|
||||
ent_path = "/".join(ent_path_items)
|
||||
items.append({
|
||||
"type": "label",
|
||||
"value": "<p>{} - {}</p>".format(name, ent_path)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue