Activities of "murat.kebabci"

Yes that's the problem, thank you

Hi, i recorded the issue

https://streamable.com/103ycv

In our application Identity is not the first tab, I assumed the same for yours. You can reproduce this issue by clicking a tab other than the first one, closing the modal, then reopening it.

Hello, There was a mistake so I updated the question, sorry for the confusion. You can reproduce the bug without adding any custom features.

Thank you

Hi Arman,

Thank you for information.

Best regard

Hi, I am updating 3.0.5 to 3.1.2, But Login button of home page not work. I can't login. Is there any config I don't know? And then I have created a empty project. The problem continues.

"@volo/abp.ng.account": "~3.1.2",
"@volo/abp.ng.audit-logging": "~3.1.2",
"@volo/abp.ng.identity": "~3.1.2",
"@volo/abp.ng.identity-server": "~3.1.2",
"@volo/abp.ng.language-management": "~3.1.2",
"@volo/abp.ng.saas": "~3.1.2",
"@volo/abp.ng.text-template-management": "~3.1.2",
"@volo/abp.ng.theme.lepton": "~3.1.2",

This code is not redirect and not push login page!

login() {
    this.authService.initLogin();
  }

I wrote account/login a[href] tag on home page, but not work!

This is my env.

import { Config } from '@abp/ng.core';

const baseUrl = 'http://localhost:4200';

export const environment = {
  production: false,
  application: {
    baseUrl,
    name: 'XXX',
  },
  oAuthConfig: {
    issuer: 'http://localhost:5002',
    redirectUri: baseUrl,
    clientId: 'XXX_App',
    responseType: 'code',
    scope: 'offline_access XXX',
  },
  apis: {
    default: {
      url: 'http://localhost:5001',
      rootNamespace: 'XXX',
    },
  },
} as Config.Environment;

Yes. There is my menu but no settings tab. Below block is not working.

export class MyModuleConfigService {
constructor(
    private restService: RestService,
    private settingTabs: SettingTabsService
  ) {
    this.settingTabs.add([
      {
        component: MyModuleSettingsComponent,
        name: MyModuleSettingsName,
        order: 3,
      },
    ]);
  }

  getSettings(): Observable<void> {
    return this.restService.request<void, void>({
      method: 'GET',
      url: '/api/MyModuleConfig/Settings',
    });
  }
}

?

Module

Hi Mehmet,

Thank you for your answer. But I want to know how to add new tab of Setting Management page from npm package.

I used to use below block in service page.

addSettingTab({ component: MySettingsComponents, name: 'SettingsMenu', order: 1 });

Showing 1 to 10 of 18 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11