I reproduced the exact same problem, It seems a bug, LeptonX theme will check it
Hello , I already used your source code to override the razor page (view only) and follow your steps to override it but still couldn't find the problem (that is why I could see the flag icon in the general settings list but can't open it). I shared here my code in view just to find out if I miss something else or what is the exact problem
Hi, do you have any JavaScript logs in your browser console?
Hi, the Load More Button is only for desktop UIs, on mobile devices, it automatically loads when scrolled to the last item.
According to my investigations, there are some missing attributes in IdentityUserPage.xaml file for CollectionView.
RemainingItemsThreshold and RemainingItemsThresholdReachedCommand are missing. They exist in TenantsPage.xaml but missing in IdentityUserPage, can you add them and try again?
<CollectionView
ItemsSource="{Binding Items}"
SelectionMode="None"
RemainingItemsThreshold="2"
RemainingItemsThresholdReachedCommand="{Binding LoadMoreCommand}">
We'll update the templates as soon as possible. Thanks for your feedback.
Your credit is also refunded.
Thanks for your findings, We'll update the template according to this information, thanks for this key point
Also, your credit is refunded
It is difficult to share the whole project for security wise. What are the classes that you need to check?
You can create a new empty project and reproduce the problem in it, then you can send the project with reproduction steps to us
I have reproduced the problem and it occurs because of SecureStorage. We have used in exactly same way with the MAUI documentation but it doesn't respond at runtime in release mod only on Android. It seems it's related to MAUI implementation.
You can use Preferences API or use a simple Sqlite to keep data in the DefaultStorage implementation as a workaround. We aware the problem but we don't have a solution for android yet
It should be @page "/cmskit/page" on v7.4.x
Can you open it without overriding the Index page?
By the way can you share reproduction steps from scratch?
Hi, did you override Pages/Public/CmsKit/Pages/Index.cshtml page in the previous version?
If yes, you'll need to define @page attribute like this: https://github.com/abpframework/abp/blob/35527c1ece6fddcf76eb08eabb1c6bc067abb8d4/modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/Public/CmsKit/Pages/Index.cshtml#L1
But it's even changed again in v8.0 https://github.com/abpframework/abp/blob/rel-8.0/modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/Public/CmsKit/Pages/Index.cshtml#L1
Hi, can you try close menu manually after clicking the menu item. Since it's a blazor project, probably navigation works and DOM is changed but menu couldn't be closed automatically.
Do you have any logs for it?