Hi,
My project's Change log shows Namespaces instead of Entity Name.
Is there a way to fix this?
Also, the dropdown does not have the Objects available.
Note, My entities have entity history enabled with [Audited] tag and lines uncommented in *EntityFrameworkCoreModule.cs
Thanks for replying.
Regards, Vikas
4 Answer(s)
-
0
What do you mean?
-
0
-
0
Hi @aggarwal
The problem about empty dropdown is fixed here https://github.com/aspnetzero/aspnet-zero-core/issues/2103
For problem about namespace, you need to define localization like the one we did for Role, see https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Core/Localization/AbpZeroTemplate/AbpZeroTemplate.xml#L818
-
0
Hi @ismcagdas.
Everything working now, execpt the localisation for dropdown was not getting picket up.
Line 140 needs a small fix in following. Can you review and get that logged as github issue?
https://github.com/aspnetzero/aspnet-zero-core/commit/7eb8a38d46bc704dbc6250b49e240c149900caf7
-
entityHistoryObjectTypes.Add(new NameValueDto(enabledEntity, enabledEntity));
-
entityHistoryObjectTypes.Add(new NameValueDto(L(enabledEntity), enabledEntity));
Thank you for your help :)
-