Skip to content

Commit

Permalink
feat: update datasets list column name to Last Update Date
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmbmb committed Aug 30, 2023
1 parent e2ae2e9 commit bfb81ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/argilla/tasks/datasets/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def build_tags_text(tags: Dict[str, str]) -> Markdown:
return Markdown(text)

table = get_argilla_themed_table(title="Datasets")
for column in ("ID", "Name", "Workspace", "Type", "Tags", "Creation Date", "Update Date"):
for column in ("ID", "Name", "Workspace", "Type", "Tags", "Creation Date", "Last Update Date"):
table.add_column(column, justify="center")

if type_ is None or type_ == DatasetType.feedback:
Expand Down

0 comments on commit bfb81ae

Please sign in to comment.