Skip to content

Commit

Permalink
fix(admin ui): incorrect index alias page link
Browse files Browse the repository at this point in the history
  • Loading branch information
bkapustik committed Oct 14, 2024
1 parent 7f9918d commit 1a9df9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected override async Task<ICommandResponse> ProcessFormData(AzureSearchAlias
{ typeof(IndexAliasEditPage), alias.Identifier }
};

var successResponse = NavigateTo(pageLinkGenerator.GetPath<IndexAliasListingPage>(pageParameterValues))
var successResponse = NavigateTo(pageLinkGenerator.GetPath<IndexAliasEditPage>(pageParameterValues))
.AddSuccessMessage("Index alias created.");

return successResponse;
Expand Down

0 comments on commit 1a9df9c

Please sign in to comment.