Skip to content

Commit

Permalink
correct cycle attribute names
Browse files Browse the repository at this point in the history
resolves #1374
  • Loading branch information
Fred Lefévère-Laoide authored and Fred Lefévère-Laoide committed Jun 7, 2024
1 parent 78be002 commit 1e5f10b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taipy/gui_core/_adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ class _GuiCoreScenarioProperties(_GuiCoreProperties):
"Label": _GuiCorePropDesc("get_simple_label()", "string", for_sort=True),
"Creation date": _GuiCorePropDesc("creation_date", "date", for_sort=True),
"Cycle label": _GuiCorePropDesc("cycle.name", "string", extended=True),
"Cycle start": _GuiCorePropDesc("cycle.start", "date", extended=True),
"Cycle end": _GuiCorePropDesc("cycle.end", "date", extended=True),
"Cycle start": _GuiCorePropDesc("cycle.start_date", "date", extended=True),
"Cycle end": _GuiCorePropDesc("cycle.end_date", "date", extended=True),
"Primary": _GuiCorePropDesc("is_primary", "boolean", extended=True),
"Tags": _GuiCorePropDesc("tags", "string"),
}
Expand Down

0 comments on commit 1e5f10b

Please sign in to comment.