Activities of "sumeyye.kurtulus"

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.

I also acknowledge your point, but it has to do nothing with the lepton-x configurations. It must be working right for the main project since then all configs are based on that project apart from the extra application that you have added.

I have duplicated the same case by cordially checking the locales file inside the sources. However, as you can presume that the files are not loaded because the project is some sort of an extension and we cannot serve such customization on our side.

For the sake of helping you, I can suggest you to utilize this way by replacing the path @angular/common/locales with the files that you can copy inside another folder, that depends on your business logic, so that the so-called unreachable files would become reachable.

// register-locale.ts

import { differentLocales } from '@abp/ng.core';
export function registerLocale(locale: string) {
  return import(
    /* webpackChunkName: "_locale-[request]"*/
    /* webpackInclude: /[/\\](en|fr).js/ */
    /* webpackExclude: /[/\\]global|extra/ */
    `@angular/common/locales/${differentLocales[locale] || locale}.js`
  )
}

// app.module.ts

import { registerLocale } from './register-locale';

@NgModule({
  imports: [
    // ...
    CoreModule.forRoot({
      // ...other options,
      registerLocaleFn: registerLocale
    }),
    //...
  ]

Hello, thank you for giving more details that lead me to investigate further. However, I have not detected anything to fix on our side. As the error you receive implies, you will need to configure the localization setting according to this documentation.

Moreover, once I add this block for the angular-extra project, it works for the en-GB localization.

Thank you for the clarification, again. I understand the issue you're facing with the additional Angular project and the localization error. Please take your time to prepare the sample project over the weekend. Once you send it over, I'll be happy to investigate and assist you further.

Although I followed these steps, I cannot replicate any flicker. You may prefer removing the loader with id lp-page-loader inside the index.html in order to solve this issue. If you think that this is not the case, you can share a recording.

Hello, thank you for reporting this. However, I created a project with the version 8.0.4 and I could not duplicate the flicker as you may find in this recording.

If your project has been created with another version, that would be the best to share the exact version. Otherwise, we can assist you further if you see an exceptional error in the console.

Hello, you can follow the instructions of this documentation to be able to modify the user menu items.

Hello again, thank you for clarification. However, once I configure everything for port 4201 as you did so, I could not replicate the same problem as you can see in the screenshot below. That would be the best if you can share the command you used for creating the project, or you can also share a sample project if the problem persists in this way through this mail sumeyye.kurtulus@volosoft.com.

Hello, the pleasure is mine for helping. I also see your point and you are right this value is readonly which is not mutable directly. I can suggest you to implement a workaround or use the Writable feature of typescript to make it mutable.

Hello, this problem occurs since then you are trying to run a project that has been configured for the port 4200. If you update the related parts, especially for the docker, with the intended port 4201, and re-install the dependencies, the problem should be eliminated.

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