Skip to content

Commit

Permalink
fix: No items message stacking on continuos fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
Ra-Jay committed May 13, 2024
1 parent 158537d commit d722be2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1295,9 +1295,10 @@ private async void btnFetchDatasets_Click(object sender, EventArgs e)
{
List<string> datasets = await AWS_Helper.GetAvailableDatasetsList(s3Client, SAGEMAKER_BUCKET);

datasetListComboBox.Items.Clear();

if (datasets != null && datasets.Count > 0)
{
datasetListComboBox.Items.Clear();

foreach (var obj in datasets)
{
Expand Down

0 comments on commit d722be2

Please sign in to comment.