Activities of "sumeyye.kurtulus"

Hello, thank you for providing these details.

Unfortunately, I’m unable to access the JSON file at https://pastebin.com/CHpftErb, so I can’t reproduce the issue on my end.

Additionally, this version should have been updated to 9.0.0 with the latest release.

I’ve also tried clearing the .suite folder to force ABP Suite to fetch a fresh copy, but the issue still persists. For reference, the package.json of the .suite schematics currently shows:

"name": "@volo/abp.ng.suite", "version": "9.2.0-rc.3",

Hello again, and apologies for the delayed response.

Thank you for the additional details—this helps clarify the situation. As previously mentioned, it is not possible to override the settings overlay directly, as it is intended to be replaced in its entirety by design. However, reviewing the source code may still be beneficial if you plan to implement a custom overlay solution.

Please feel free to reach out if you need further assistance or guidance.

I'm glad to hear that the solution worked and everything is running smoothly now!

Regarding your request to refund the ticket allocation, I'm afraid we can't process a refund in this case. Our policy is to refund tickets that are used to report a bug or a problem in our product.

Regards.

Hello again, I am glad to hear that the suggestion worked on your side.

You can check this for the related source code https://github.com/abpframework/abp/blob/3f3788f513a15f63ed0c99891ae51884fffed5a3/npm/ng-packs/packages/feature-management/src/lib/components/feature-management/feature-management.component.ts#L121

Hi! Here's an approach you can follow:

const userNameField = new FormProp<IdentityUserDto>({
  type: ePropType.String,
  name: 'userName',
  displayName: 'New Username',
  id: 'userName',
  autocomplete: 'new-username',
  validators: _ => [Validators.required, Validators.minLength(4)],
});

export function userCreateFormContributor(formProps: FormPropList<IdentityUserDto>) {
  const userNameIndex = formProps.indexOf('userName', (action, name) => action.name === name);
  formProps.dropByIndex(userNameIndex);
  formProps.addByIndex(userNameField, userNameIndex);
}

export const identityCreateFormContributors: IdentityCreateFormPropContributors = {
  [eIdentityComponents.Users]: [userCreateFormContributor],
};

export const identityEditFormContributors: IdentityEditFormPropContributors = {
  [eIdentityComponents.Users]: [userCreateFormContributor],
};

Then, configure your route like this:

// app-routing.module
...
{
  path: 'identity',
  loadChildren: () =>
    import('@volo/abp.ng.identity').then(m =>
      m.IdentityModule.forLazy({
        createFormPropContributors: identityCreateFormContributors,
        editFormPropContributors: identityCreateFormContributors,
      }),
    ),
},
...

Let me know if you need any further help!

Hello again, and thank you for trying the suggestion and reaching out. It would be best if you could create a separate ticket for the issue related to the database provider. This will help us ensure the appropriate person can assist you more efficiently.

We appreciate your cooperation!

Thank you for trying and reaching out again. You can follow this link to see the upcoming releases. Also, that would be the best if you could provide a minimal reproducible example so that I could assist you further on that. You can send it to this address sumeyye.kurtulus@volosoft.com

Hello! Directly overriding the overlay content isn’t possible. However, I recommend adding the source code to your project so you can handle the replacement that way.

You can use the following command:

abp add-package @volosoft/ngx-lepton-x --with-source-code

Feel free to reach out if you need any further help!

Hello, this issue will be addressed in the upcoming Studio release. In the meantime, you can apply the following path configuration as a temporary workaround:

  //apps/angular/tsconfig.json
  "compilerOptions": {
    ...
    "paths": {
      ...
      "@abp/*": ["node_modules/@abp/*"],
      "@volo/*": ["node_modules/@volo/*"]
    }
    ...
  },

Thank you for your understanding and cooperation.

Hello, this issue will be addressed in the upcoming Studio release. In the meantime, you can apply the following path configuration as a temporary workaround:

  //apps/angular/tsconfig.json
  "compilerOptions": {
    ...
    "paths": {
      ...
      "@abp/*": ["node_modules/@abp/*"],
      "@volo/*": ["node_modules/@volo/*"]
    }
    ...
  },

Thank you for your understanding and cooperation.

Showing 151 to 160 of 463 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41