Skip to content

Commit

Permalink
scenario tags edit (#1381)
Browse files Browse the repository at this point in the history
resolves #1365

Co-authored-by: Fred Lefévère-Laoide <[email protected]>
  • Loading branch information
FredLL-Avaiga and Fred Lefévère-Laoide authored Jun 9, 2024
1 parent 78e1736 commit aedb4e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taipy/gui_core/_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ def __edit_properties(self, entity: t.Union[Scenario, Sequence, DataNode], data:
if isinstance(ent, Scenario):
tags = data.get(_GuiCoreContext.__PROP_SCENARIO_TAGS)
if isinstance(tags, (list, tuple)):
ent.tags = dict(tags)
ent.tags = set(tags)
name = data.get(_GuiCoreContext.__PROP_ENTITY_NAME)
if isinstance(name, str):
if hasattr(ent, _GuiCoreContext.__PROP_ENTITY_NAME):
Expand Down

0 comments on commit aedb4e4

Please sign in to comment.