Activities of "sinan"

Yes, exactly.

No, this pr only solves the pagination issue.

You have nothing to do to spacing in organization unit in ABP side. But you can customize it in your global styles.scss file.

You can disable or make invisible your form controls while you are adding it via FormProp object. Check the api of form prop options https://docs.abp.io/en/abp/latest/UI/Angular/Dynamic-Form-Extensions#formpropoptions-r-any

You can update your abp application to version 8.0.x. We are planning to release 8.1.0 next week and 8.0.5 patch version. You can follow releases here.

This problem is fixed in 8.0.5. Related pr

8.0.5 will be release next week.

Can you delete caches like node_modules, yarn.lock etc and reinstall the packages again

Hi pablo, can you check which version of @abp/ng.theme.shared are you using.

We were fixed this problem in 7.4.2, related pr

And i suggest you to update your abp version to 8.1. We have made a changes in errorHandler and it is much cleaner.

hi, we have created an pull request abot this problem. i have refunded your question credit.

Answer

hi as a workaround, can you do something like this? With this method, you won't need to reload the page.

export class AppComponent {
  config = inject(ConfigStateService);
  authService = inject(AuthService);
  router = inject(Router);

  constructor() {
    const currentUser = this.config.getOne('currentUser');

    if (currentUser == null || currentUser.id == null) {
      const loginParams: LoginParams = {
        username: 'admin', // change with your username
        password: '1q2w3E*', // change with your password
        redirectUrl: '/',
      };
      this.router.navigateByUrl('/account/login').then(() => {
        this.authService
          .login(loginParams)
          .subscribe();
      });
    }
  }
}

have you tried this section? if you did please share the related codes with us.

hi, we have created a pr. it will be fixed in next patch.

Showing 41 to 50 of 79 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30