Thanks for the reporting @pvaz.
The font problem will be fixed in v4.0 stable version.
To fix the network error, you should run the backend on your local IP address and without HTTPS, as documented here.
Hi pvaz
As of v4.0-rc-4, we have fixed some bugs in source code of React Native UI. Can you try again by downloading the latest RC template?
If the problem will not fix with the new template, please let me know and take a look at this answer.
The error has been resolved.
Hi @Esben_Dalgaard
What code is causing this error? Can you share HTML and TypeScript code with us?
Can you run the following command in the angular
folder and share the result?
yarn why @ng-bootstrap/ng-bootstrap
Hi @pooja
Please create a new ticket and ask your question in detail.
Tenant selection box is only visible for host. This will not appear in tenant subdomains. You can hide it via MultiTenancyService
like below:
import { MultiTenancyService } from '@abp/ng.core';
//...
constructor(private multiTenancyService: MultiTenancyService) {
this.multiTenancyService.isTenantBoxVisible = false;
}
Hello
Which authorization flow do you using? Authorization code flow (redirects MVC UI) or resource owner password flow (redirects login page of Angular account module)?
You can get a setting value as shown below:
import { ConfigStateService } from '@abp/ng.core';
@Component(/* component metadata */)
export class YourComponent {
constructor(private config: ConfigStateService) {
const maxUserMembershipCount = this.config.getSetting('Abp.Identity.OrganizationUnit.MaxUserMembershipCount')
console.log(maxUserMembershipCount) // 2147483647
}
}
Hi @bozkan
Can you share the setting
property of application-configuration
response with us?
Hi @lalitChougule
You can use the OAuthService
's events
stream for that. See the example:
import { Component } from '@angular/core';
import { OAuthService } from 'angular-oauth2-oidc';
import { filter } from 'rxjs/operators';
@Component(/* component metadata */)
export class AppComponent {
constructor(private oAuthService: OAuthService) {
this.oAuthService.events
.pipe(filter((event) => event?.type === 'logout'))
.subscribe((event) => {
// logout event fired
});
}
}