Skip to content

Commit

Permalink
Remove redundant comments in ActivityExecutionsTab.razor.cs
Browse files Browse the repository at this point in the history
Eliminated unnecessary comments regarding the checking and periodic refreshing of selected item details. This change improves code readability and maintains the focus on the essential logic.
  • Loading branch information
sfmskywalker committed Oct 10, 2024
1 parent 9f7b35f commit 4a6bea9
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,9 @@ private async Task OnActivityExecutionClicked(TableRowClickEventArgs<ActivityExe
if (SelectedItem == null)
return;

// Check if the selected item has all of its details or not.
// If not, periodically check for the details until they are available.
if (SelectedItem.IsFused())
return;

// Start a timer to periodically check for the details.
RefreshSelectedItemPeriodically(id);
}

Expand Down

0 comments on commit 4a6bea9

Please sign in to comment.