Activities of "sumeyye.kurtulus"

I could not duplicate the same problem unfortunately

Hello, I have carefully checked your case and one of the import problem was solved by this PR previously. I can suggest you to use related DTOs in the Application layer rather than the ones inside the domain. You can follow these documentations as a reference

https://abp.io/docs/latest/framework/architecture/best-practices/application-services

https://abp.io/docs/latest/framework/architecture/domain-driven-design/application-services#object-to-object-mapping

Hello, I have carefully checked your case and I could not duplicate the same problem for the abp packages as you may find in this screenshot.

If you still face the same problem, that would be the best to confirm that these lines are the same in this file angular\node_modules\@abp\ng.schematics\utils\model.js

If this is not the case, there should be a problem with the related upgrade.

Hello,

I apologize for the delay in my response. I have thoroughly investigated the issue you reported but was unable to replicate it on my end. Given this, I recommend upgrading your application to version 8.0, which is more stable and well-supported.

Thank you for your understanding.

Hello, thank you for reporting this issue. It will be fixed by the next patch release where you can follow the details here. Your ticket will be refunded, either.

Hello, I could not duplicate your issue on my side. Normally, the warning pop up should behave in the right way.

For this reason, I suspect some other configuration that may result in this and that would be the best if you can share a sample project through this e-mail: sumeyye.kurtulus@volosoft.com

Hello, this problem can be related to this issue https://github.com/abpframework/abp/issues/19656 that was solved in a 8.1 patch.

Yes, you are right. However, the Navbar service is not the only place we handle the navigations and highlights. Because of this restriction, we are fixing the navbar items according to the route changes that is connected to the navbar routes component.

I can suggest you to modify the related part as follows:

 this.navbarService.navbarItems$.subscribe((items) => {
      items.forEach((item) => {
        if (item.text === "Home") {
          item.expanded = false;
          item.selected = false;
        }
        if (item.text === "Administration") {
          item.expanded = true;
          item.selected = true;
        }
      });
      this.menuItems = items;
    });

By doing this you can reach such result:

Hello, I have investigated your case carefully. However, we cannot provide such functionality for the time being. Hence, I could not quite get how you implemented this block either

this.navbarService.navbarItems$.subscribe(items => {
      items.forEach(item => {
        if (item.text === 'Approve It') {
          item.expanded = true;
        } else {
          item.expanded = false;
        }
        this.changeDetectorRef.markForCheck();
      });
    });

Hello, thank you for reporting this problem. It will be fixed as soon as possible for the next patch release. So, you can follow this issue and the next releases.

Your ticket will be refunded, either.

Showing 21 to 30 of 64 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13