Activities of "uyarbtrlp"

Hi,

it is already like that

 app.UseSwaggerUI(options =>
            {
                options.DocumentTitle = "NMM API";

                // Display latest api version by default
                //
                var provider = context.ServiceProvider.GetRequiredService<IApiVersionDescriptionProvider>();
                foreach (var description in provider.ApiVersionDescriptions)
                {
                    options.SwaggerEndpoint($"/swagger/{description.GroupName}/swagger.json", description.GroupName.ToUpperInvariant());
                }
                var configuration = context.GetConfiguration();
                options.OAuthClientId(configuration["AuthServer:SwaggerClientId"]);
                options.OAuthClientSecret(configuration["AuthServer:SwaggerClientSecret"]);
            });

Hi,

I sent the source code

Hi,

It is still same.

  • ABP Framework version: v4.3.0
  • UI type: MVC
  • Tiered (MVC): Yes
  • Steps to reproduce the issue:
  1. Created a new project from abp suite.
  2. Added a test logo under wwroot/images/logo in .Web project
  3. Added the code public override string LogoUrl => "/images/logo/project-test-logo.png" in BrandingProvider
  4. Also I have changed the test logo to logo-light.png or logo-dark.png which was created defaultly.
  5. It has affected the logo above the menu, I am able to see my logo, but it does not work on Login page.
  6. I want to change the logo which is on Login page. Is there any way to change it?

Is there any update for the issue?

Yeah, of course. How can we make it?

In our ci/cd environment we want to hold all Volo.Abp related binaries in our local binary repository. For example from nuget.org you can get the list of all Volo related nuget packages by following command: nuget list Volo.Abp -Source https://api.nuget.org/v3/index.json after getting the list, we just install and push the binaries in our local binary repository. We want to do similar thing for Volo’s COTS binaries. But the same nuget list cli command return nothing for following repo: https://nuget.abp.io/secret/v3/index.json Basically, we want to get the list of COTS binaries then install & push them into our local binary repo. In this way, we can always access old and new version of the binaries. We can avoid ‘no longer support following version’ situation. Can you suggest us a way to get COTS binaries from command line or any other way?

We have copied the Lepton theme folders (such as Bundling, Toolbars) and the components inside the Theme -> Lepton. We have added theme's css and styles to Themes -> Global -> Scripts and Styles. We have have created the components like Toolbar, Tools, Header . We have used your logic to create the components content. The content are the same but the html codes that inside the components are different from yours. Finally, we have added our scripts and styles to global script contributor and global style contributor. We have thought it works smoothly, but we have noticed this problem on dropdown menu. If I remove these scripts, the dropdown menus do not work. However, other components are working flawlessly. The problem is here. You can see that on language component used on Application layout. Scripts work, but the dropdown menus do not. We cannot see the panel that drop down menu includes other languages. This problem also applies to other drop down menus.

I sent it. Thanks.

How can I send the project to you?

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