Skip to content

Commit 51bc004

Browse files
committed
chore(common): fix links
1 parent 27e86bd commit 51bc004

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

components/wizard/structure/stepper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can use the parameters the `WizardStep` exposes to customize the following p
2222
* [Individual Stepper settings](#individual-stepper-settings)
2323
* [Indicators](#indicators)
2424
* [Labels](#labels)
25-
* [Optional](#state)
25+
* [Optional](#optional)
2626
* [Disabled](#disabled)
2727
* [Valid](#valid)
2828

deployment/ci-cd-build-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Finally, you need a `NuGet.Config` file that lists the Telerik server in the `pa
107107

108108
When building or restoring Blazor apps in Docker, the crucial steps are:
109109

110-
1. Have a `NuGet.Config` file in the project or solution folder. The file can [define the Telerik NuGet feed]({%slug installation/nuget%}#edit-the-nugetconfig-file), but without the credentials (Telerik account or NuGet API key).
110+
1. Have a `NuGet.Config` file in the project or solution folder. The file can [define the Telerik NuGet feed]({%slug installation/nuget%}#edit-the-nuget-config-file), but without the credentials (Telerik account or NuGet API key).
111111
1. Copy the `NuGet.Config` file together with the `.csproj` file(s) to the Docker image.
112112
1. [Add](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-add-source) or [update](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-update-source) the Telerik NuGet feed with the [stored Telerik NuGet credentials (secrets)]({%slug installation/nuget-keys%}). When specifying the `NuGet.Config` file location, note that file names are case-sensitive on Unix systems.
113113
1. Restore or build the Blazor app.

deployment/nuget-keys.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ The examples below assume that the secret environment variable name is `TELERIK_
5252

5353
There are two common ways to use a [stored NuGet key](#storing-nuget-keys) with the Telerik NuGet server during a build:
5454

55-
* [Using a NuGet.Config file](#using-a-nugetconfig-file)
56-
* [Using only CLI commands](#using-only-cli-commands)
55+
* [Using a NuGet.Config file](#using-a-nuget-config-file)
56+
* [Using only CLI commands](#using-net-cli-commands)
5757

5858
For more information on how to use NuGet keys in a build, check the [Announcing NuGet Keys](https://www.telerik.com/blogs/announcing-nuget-keys) blog post by Lance McCarthy.
5959

deployment/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ This page provides information for common issues you may encounter while deployi
2121
At the time of writing, sometimes the following issues have been reported that pertain to the Telerik UI for Blazor suite:
2222

2323
* `Unable to find package Telerik.UI.for.Blazor` is a common pitfall in build environments. See the [NuGet Troubleshooting]({%slug troubleshooting-nuget%}#unable-to-find-package) article, which also provides other NuGet-related tips.
24-
* [404 not found for telerik-blazor.js](#404-not-found-for-telerik-blazorjs)
24+
* [404 not found for telerik-blazor.js](#404-not-found-for-telerik-blazor-js)
2525
* [Trial Message](#trial-message)
26-
* [Could not load file or assembly 'System.Text.Json, ...](#could-not-load-file-or-assembly-systemtextjson-)
26+
* [Could not load file or assembly 'System.Text.Json, ...](#could-not-load-file-or-assembly-system-text-json)
2727
* [Blazor Server app is slow or breaks in the cloud](#blazor-server-slow-or-breaks-up-in-the-cloud)
2828
* [The remote certificate is invalid because of errors in the certificate chain](#invalid-certificate)
2929

getting-started/hybrid-blazor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The process for adding Telerik UI for Blazor to a WinForms, WPF, or MAUI app is
3333

3434
### 1. Get the Telerik UI for Blazor Package
3535

36-
To use the UI for Blazor components, install the `Telerik.UI.for.Blazor` package and include its reference in the `.csproj` file of the app. [Read more on where to get the `Telerik.UI.for.Blazor` package...]({%slug getting-started/what-you-need%}#getting-the-telerik-packages)
36+
To use the UI for Blazor components, install the `Telerik.UI.for.Blazor` package and include its reference in the `.csproj` file of the app. [Read more on where to get the `Telerik.UI.for.Blazor` package...]({%slug getting-started/what-you-need%}#nuget-packages)
3737

3838
### 2. Add the Telerik Client Assets
3939

getting-started/vs-code-integration/convert-project-wizard.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ You have successfully enabled the Progress® Telerik® UI for Blazor compo
4747
There are a few common problems that might occur when converting a project:
4848

4949

50-
* [_Imports.razor not found](#_importsrazor-not-found)
51-
* [MainLayout.razor not found](#mainlayoutrazor-not-found)
52-
* [_Host.cshtml or index.html is malformed, doesn't exist, or doesn't contain a head element](#_hostcshtml-or-indexhtml-is-malformed-doesnt-exist-or-doesnt-contain-a-head-element)
50+
* [_Imports.razor not found](#_imports-razor-not-found)
51+
* [MainLayout.razor not found](#mainlayout-razor-not-found)
52+
* [_Host.cshtml or index.html is malformed, doesn't exist, or doesn't contain a head element](#_host-cshtml-or-index-html-is-malformed-doesn-t-exist-or-doesn-t-contain-a-head-element)
5353
* [Unable to locate services collection](#unable-to-locate-services-collection)
5454
* [No suitable project to convert](#no-suitable-project-to-convert)
5555

getting-started/vs-integration/upgrade-wizard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The **Upgrade Information** step of the Upgrade Project Wizard describes the fil
2323
The Telerik Blazor Upgrade Wizard will do the following:
2424

2525
* Update the version of the referenced Blazor NuGet package. It will also update the package source in the solution-based NuGet config file.
26-
* Update the version of the theme reference, but only when using CDN. Otherwise, [update the theme manually]({%slug getting-started-vs-integration-new-project%}#step-3-configure-additional-project-settings).
26+
* Update the version of the theme reference, but only when using CDN. Otherwise, [update the theme manually]({%slug getting-started-vs-integration-new-project%}#step-3-select-theme).
2727
* Update all local script and style and NuGet package references if you upgrade from a Trial to a Dev version.
2828
* It will add the new keys in the default (English) localization file.
2929

installation/nuget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can set up the remote Telerik NuGet feed in the following ways:
1818

1919
* [Use Visual Studio](#use-visual-studio)
2020
* [Use the .NET CLI](#use-the-net-cli)
21-
* [Edit the Nuget.Config file](#edit-the-nugetconfig-file)
21+
* [Edit the Nuget.Config file](#edit-the-nuget-config-file)
2222

2323
>tip When working with the .NET CLI or editing the `NuGet.Config` manually, you can use your Telerik account credentials or a [NuGet API Key](#use-nuget-api-key). If you are logging in to telerik.com through single sign-on (SSO), use a [NuGet API Key](#use-nuget-api-key).
2424

knowledge-base/chart-crowded-labels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ You can control how many labels render, their rotation angle and even font in or
3131

3232
You can also skip directly to the examples:
3333

34-
* [Example - Rotate the Chart Labels](#example---rotate-the-chart-labels)
35-
* [Example - Skip rendering every n-th label](#example---skip-rendering-every-n-th-label)
34+
* [Example - Rotate the Chart Labels](#example-rotate-the-chart-labels)
35+
* [Example - Skip rendering every n-th label](#example-skip-rendering-every-n-th-label)
3636

3737

3838
The general approach to customize the Chart is to apply settings using nested tags. In the case of the `Labels` the tag is

knowledge-base/common-validation-error-in-tooltip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Can you please advise me on how to display validation message as tooltip?
3131

3232
This article contains several different ways to implement validation notifications with popups:
3333

34-
* [Telerik Validation Tooltip Component](#telerikvalidationpopup)
34+
* [Telerik Validation Tooltip Component](#telerikvalidationtooltip)
3535
* [Telerik Form Component](#telerikform)
3636
* [Validation Summary in a Popup](#validation-summary-in-a-popup)
3737
* [Per-Input Validation Popups](#per-input-validation-popups) - it is much easier to use the Telerik components listed above to get this functionality

0 commit comments

Comments
 (0)