Base solution for your next web application

Activities of "ubiquo"

<a class="postlink" href="https://keenthemes.com/metronic/changelog.html#v5-1.5">https://keenthemes.com/metronic/changelog.html#v5-1.5</a>

Here one of the fixes is "Bootstrap Select's data-size HTML parameter issue."

Also, on the bootstrap-select documentation they said that Bootstrap 4 is not yet supported.

You are right, in the demo site there is no Abp.TenantId, but I noticed that when calling GetCurrentLoginInformations it is not returning the tenant info. Is there any configuration that I'm missing?

Left -> demo site, Right -> my site.

if (AbpSession.TenantId.HasValue)
{
    output.Tenant = ObjectMapper
        .Map<TenantLoginInfoDto>(await TenantManager
            .Tenants
            .Include(t => t.Edition)
            .FirstAsync(t => t.Id == AbpSession.GetTenantId()));
}

Apparently AbpSession.TenantId has no value.

Hi @ismcagdas, I'm having this same issue. Because of this I'm not able to log in into any tenant, only the host. I also have {TENANCY_NAME} in remoteSeriveBaseUrl and ServerRootAddress.

"remoteServiceBaseUrl": "http://{TENANCY_NAME}.mydomain.com/Host",
"appBaseUrl": "http://{TENANCY_NAME}.mydomain.com/Angular"
"ServerRootAddress": "http://{TENANCY_NAME}.mydomain.com/Host",
"ClientRootAddress": "http://{TENANCY_NAME}.mydomain.com/Angular"

I tried on my local machine following the steps in here [https://github.com/aspnetzero/aspnet-zero-core/issues/557])

Showing 1 to 3 of 3 entries