Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ protected internal async Task SetActiveIndex(MudStep step)
await _animate.Refresh();
}
ActiveIndex = Steps.IndexOf(step);
await ActiveStepChanged.InvokeAsync();
await ActiveStepChanged.InvokeAsync(ActiveIndex);
}

public async Task SetActiveIndex(int count, bool firstCompleted = false, bool skipPreventProcess = false)
Expand Down Expand Up @@ -250,7 +250,7 @@ public async Task SetActiveIndex(int count, bool firstCompleted = false, bool sk

if (backupActiveIndex != ActiveIndex)
{
await ActiveStepChanged.InvokeAsync();
await ActiveStepChanged.InvokeAsync(ActiveIndex);
}
}

Expand Down