Hi,
This seems to be a problem.
You can try to override the bootstrap-light.css
Download the bootstrap-light.css file here and put to your project:
https://gist.github.com/realLiangshiwei/b7e4811009fbbdc568b2d2f0955dae10
Themes/LeptonX/Global/side-menu/css/bootstrap-light.css
Themes/LeptonX/Global/top-menu/css/bootstrap-light.css
You can try this:
context.Services.ConfigureApplicationCookie(options =>
{
options.Events.OnSignedIn = async signedContext =>
{
var userId= signedContext.Principal.Identity.FindUserId();
};
});
Hi,
This ABP suite does not support the specified version to create a project.
But you can using ABP CLI, fro example: abp new MyprojectName -u angular -v 7.4.3 --separate-auth-server
Hi,
Sorry, I didn't receive the email. my email is shiwei.liang@volosoft.com
Will this can help for you? https://support.abp.io/QA/Questions/6383#answer-3a0f9c51-4061-c15b-3343-1258a319af48
Hi,
We will fix it in the next patch version, your ticket has been refunded.
Hi,
Will this work for you(Add to MVC project)?
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IRemoteServiceConfigurationProvider))]
public class MyRemoteServiceConfigurationProvider : IRemoteServiceConfigurationProvider
{
protected AbpRemoteServiceOptions Options { get; }
protected IAppUrlProvider AppUrlProvider { get; }
public MyRemoteServiceConfigurationProvider(
IOptionsMonitor<AbpRemoteServiceOptions> options,
IAppUrlProvider appUrlProvider)
{
AppUrlProvider = appUrlProvider;
Options = options.CurrentValue;
}
public async Task<RemoteServiceConfiguration> GetConfigurationOrDefaultAsync(string name)
{
var configuration = Options.RemoteServices.GetConfigurationOrDefault(name);
configuration.BaseUrl = await AppUrlProvider.NormalizeUrlAsync(configuration.BaseUrl);
return configuration;
}
public async Task<RemoteServiceConfiguration?> GetConfigurationOrDefaultOrNullAsync(string name)
{
var configuration = Options.RemoteServices.GetConfigurationOrDefaultOrNull(name);
if (configuration != null)
{
configuration.BaseUrl = await AppUrlProvider.NormalizeUrlAsync(configuration.BaseUrl);
}
return configuration;
}
}
Hi,
This may be a problem
May I ask which version are you using?
: )
On the login page we see it trying to get the CSS from a different location to the dashboard screen and the layout is also pointing to the side-menu and not the top-menu
There are no menu items on the login page, so the default load is from side-menu.