How do I refresh the navigation side menu items labels after changing their label from UI without reloading the entire page in blazor

I have a razor page that shows a navigation menu on the right side of the page with a list of items. Users can change the label of those items from the UI and the label name gets refreshed on the UI, i.e. everywhere except the navigation menu. I can change the label names in the navigation menu as well but only if I reload the entire page. I do not want that as it is slow. Is there any way to reload the navigationmenu razor page without reloading the entire page?

Please find the below navigation razor page and the helper method from where I can update the label using setLabel.

NavMenuTree.razor

<AuthorizeView Context="Home">
    <Authorized>
       
        <div class="k-card-header mb-3">
            <span class="tb-icon-container">
                <TelerikSvgIcon Icon="@SvgIcon.Search" Size="@size" />
                <TelerikTextBox Value="@FilteredValue" ValueChanged="@((string input) => ChangeValues(input))" Id="filter-value" Size="@size" Rounded="@size" Placeholder="@MOM.UI.Client.Constants.Common.SearchBox" />
            </span>
        </div> 
        <div class="menu">

            <TelerikTreeView @ref="treeView" Data="@MenuData" Size="@size" OnItemClick="OnTreeViewItemClick"
                             SelectionMode="TreeViewSelectionMode.Single"
                             @bind-SelectedItems="@SelectedItems"
                             @bind-ExpandedItems="@ExpandedItems">
                <TreeViewBindings>
                    <TreeViewBinding TextField="Text" IconField="Icon" IdField="Id" ParentIdField="ParentId" UrlField="Route">
                        <ItemTemplate>
                            @{
                                MenuItem itm = context as MenuItem;
                                if (itm?.Type == "Screen")
                                {
                                    <a href="@itm.Route" class="no-decoration">
                                        @if (!string.IsNullOrEmpty(itm.Icon))
                                        {
                                            <span class="@itm.Icon"></span>
                                        }
                                        @itm.Text
                                    </a>
                                }
                                else
                                {
                                    @if (!string.IsNullOrEmpty(itm?.Icon))
                                    {
                                        <span class="@itm.Icon"></span>
                                    }
                                    @itm?.Text
                                }
                            }
                        </ItemTemplate>
                    </TreeViewBinding>
                </TreeViewBindings>
            </TelerikTreeView>
        </div>
    </Authorized>
</AuthorizeView>


@code {


    [CascadingParameter]
    public Task<AuthenticationState>? AuthenticationState { get; set; }
    [CascadingParameter(Name = "size")]
    public string? size { get; set; }
    public bool firstTimeLoad = true;

    public TelerikTreeView? treeView { get; set; }
    private IEnumerable<object>? ExpandedItems { get; set; } = new List<object>();
    private IEnumerable<object>? SelectedItems { get; set; } = new List<object>();
    private IEnumerable<MenuItem>? MenuData { get; set; }
    private IEnumerable<MenuItem>? AllData { get; set; }

    public string FilteredValue { get; set; }

    public AuthenticationState? authState;
    public System.Security.Claims.Claim? authClaim;
    public System.Security.Claims.Claim? entityActionClaim;
    private ClaimsPrincipal? AuthenticationStateUser { get; set; }

    protected override async Task OnParametersSetAsync()
    {
        try
        {
            AuthenticationState? authenticationState;

            authenticationState = await AuthenticationState;
            this.AuthenticationStateUser = authenticationState.User;

            if (MenuData == null)
            {
                List<MenuItem> result = (from Menu in MenuItem.GetMenuItems()
                                         from Perm in AuthenticationStateUser.Claims
                                     where ((Perm.Value.Contains(Menu.AuthorizationKey) && Perm.Type == EntityAction._contextType && Menu.Type == "Screen") ||
                                     (Perm.Value.Contains(Menu.AuthorizationKey) && Perm.Type == Module._contextType && Menu.Type == "Menu"))
                                         orderby Menu.ParentId, Menu.Rank
                                         select Menu).ToList();

                result.RemoveAll(x => x.Type == "Menu" && !result.Any(y => y.ParentId == x.Id));
                result.Add(
                new MenuItem
                {
                    Id = 25,
                    Text = "Logout",
                    Icon = @"fa-solid fa-sign-out fa-sm",
                    Type = "Screen",
                    HasChildren = false,
                    level = 1,
                    Rank = 14,
                    Route = "logout",
                    AuthorizationKey = null,
                });
                MenuData = result.AsEnumerable();
                AllData = result.AsEnumerable();
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }

    }
    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        try
        {
            if (treeView != null)
            {
                if (ExpandedItems?.Count() == 0)
                {
                    if (_navMan.BaseUri != _navMan.Uri)
                    {
                        string selectedRoute = _navMan.Uri.Replace(_navMan.BaseUri, "/");

                        var selectedItem = MenuData?.FirstOrDefault(x => x.Type == "Screen" && selectedRoute.ToLower().Contains(x.Route.ToLower()));
                        if (selectedItem != null)
                        {
                            SelectedItems = new List<object>() { selectedItem };
                            while (selectedItem != null)
                            {
                                ExpandedItems = ExpandedItems.Concat(new[] { MenuData.FirstOrDefault(x => x.Type == "Menu" && x.Id == selectedItem.ParentId) });
                                selectedItem = MenuData.FirstOrDefault(x => x.Type == "Menu" && x.Id == selectedItem.ParentId);
                            }
                        }
                    }
                }
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
        await base.OnAfterRenderAsync(firstRender);
    }
    protected override void OnInitialized()
    {
        firstTimeLoad = true;
        base.OnInitialized();
    }

}

MenuHelper.cs

using MOM.Model.Setup;

namespace MOM.UI.Client.Helper
{
    public static class UserLabelHelper
    {
        private static List<LabelDTO> _labels { get; set; }

        public static void SetUserLabel(string type, string label)
        {
            try
            {
                if (_labels.Any(x => x.Type == type))
                {
                    _labels.FirstOrDefault(x => x.Type == type).UserLabel = label;
                }

            }
            catch (System.Exception ex)
            {
                throw ex;
            }
        }
    }
}

Please help me on this.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật