Hi @mukremin, can you check Suite is running or not? (or any abp command under the hook) Please, ensure it's not running and try again.
Hi, all new (after the 16th of January) customers (owners of the license) can download the ABP Framework book for free from organization detail page.
Hi @mukremin, can you rename the flag-icons.css as flag-icon.css and flag-icons.min.css as flag-icon.min.css (remove the plural 's' from both of the files) and then re-run the project again? It should work then.
Files are under the aspnet-core\src\Volo.EasyCrm.Web\wwwroot\libs\flag-icon-css\css location.
Thanks. I'll try to reproduce it and write you back asap.
Thanks, I'll wait for your email.
abp v5.2.0 should : yarn install v1.22.18?
v1.22.18 is your yarn version.
Is it because of the following reasons.
❯ abp suite [09:01:34 INF] ABP CLI (https://abp.io) [09:01:34 INF] Version 5.2.0 (Stable) Starting Suite v5.2.0 ... Opening http://localhost:3000 Press Ctrl+C to shut down. yarn install v1.22.17 [1/4] Resolving packages... [2/4] Fetching packages... [3/4] Linking dependencies... warning "@volo/abp.aspnetcore.mvc.ui.theme.lepton > @volo/abp.aspnetcore.mvc.ui.theme.commercial > @abp/aspnetcore.mvc.ui.theme.shared > @abp/bootstrap > bootstrap@5.1.3" has unmet peer dependency "@popperjs/core@^2.10.2". warning "@volo/abp.aspnetcore.mvc.ui.theme.lepton > @volo/abp.aspnetcore.mvc.ui.theme.commercial > @abp/aspnetcore.mvc.ui.theme.shared > @abp/jquery-validation-unobtrusive > @abp/jquery-validation > jquery-validation@1.19.3" has unmet peer dependency "jquery@^1.7 || ^2.0 || ^3.1". [4/4] Building fresh packages... success Saved lockfile. Done in 4.81s. yarn install v1.22.17```
Hi, I don't see any problem in here (they are just warning messages) and also I could not reproduce your problem. So, if it's possible can you share your project with me via email (engin.veske@volosoft.com)?
Hi @safi, sorry for the late response. Currently, there is a problem to check menu items according to role names (because of the ordering problem, the menu is drawn once and not updated according to auth changes properly). We aim to fix it in the next version. There is an open Github issue about it.
Btw, your credit is refunded.
In meantime, maybe you can consider using a permission check instead of a role name check, by using the RequirePermission("PermissionName")
extension method.
Example:
context.Menu.AddItem(
new ApplicationMenuItem("MyProject.Crm", l["Menu:CRM"])
.AddItem(new ApplicationMenuItem(
name: "MyProject.Crm.Customers",
displayName: l["Menu:Customers"],
url: "/crm/customers")
.RequirePermissions("MyProject.Crm.Customers") //require permission
);
);
Hi, I've created an app-pro template with blazor-wasm as UI and I didn't encounter any errors. Can you provide more information? For example, did you upgrade your application to v5.2.0? etc.
Hi @mahuwei, thanks for reporting. I'll try and write you back asap.