Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
vorozhkog committed Oct 14, 2024
1 parent ea18f5f commit 0d911db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/dtl/actions/input/images_project/images_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def src_input_data_sidebar_refresh_btn_btn_cb():
# Refresh project list and set current project and datasets if any
src_input_data_sidebar_dataset_selector.set_workspace_id(g.WORKSPACE_ID)
src_input_data_sidebar_dataset_selector.set_project_id(current_project)
src_input_data_sidebar_dataset_selector.set_dataset_ids(current_datasets)
src_input_data_sidebar_dataset_selector.set_dataset_ids(current_datasets or [])

def _set_src_preview():
src_preview_text = ""
Expand Down

0 comments on commit 0d911db

Please sign in to comment.