Skip to content

Commit d5c0cbb

Browse files
authored
chore: fix typos in new rs net articles (#1917)
* Update how-to-use-with-report-server-net.md * Update how-to-use-with-report-server-net.md * Update how-to-use-with-report-server-net.md * Update how-to-use-with-report-server-net.md
1 parent 3f677b3 commit d5c0cbb

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

embedding-reports/display-reports-in-applications/web-application/angular-report-viewer/how-to-use-with-report-server-net.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The user account that will authenticate with the Report Server may be any User,
3030
npm install @progress/telerik-angular-report-viewer
3131
````
3232
33-
>If you receive a *403 Forbidden Error*, you need to register and login at [npmjs.com](https://www.npmjs.com/) before performing this step.
33+
>If you receive a *403 Forbidden Error*, you need to register and log in at [npmjs.com](https://www.npmjs.com/) before performing this step.
3434
>
3535
>````powershell
3636
npm login --registry=https://registry.npmjs.org --scope=@progress
@@ -58,7 +58,7 @@ import { TelerikReportingModule } from '@progress/telerik-angular-report-viewer'
5858
<link href="https://kendo.cdn.telerik.com/themes/10.2.0/default/default-ocean-blue.css" rel="stylesheet" />
5959
````
6060

61-
>To get the Sass-based Kendo UI themes, you can use either the pre-build CSS files or the NPM packages ([Getting the Sass-Based Themes](https://docs.telerik.com/kendo-ui/styles-and-layout/sass-themes/overview#getting-the-themes)).
61+
>To get the Sass-based Kendo UI themes, you can use either the pre-built CSS files or the NPM packages ([Getting the Sass-Based Themes](https://docs.telerik.com/kendo-ui/styles-and-layout/sass-themes/overview#getting-the-themes)).
6262

6363
If you use the __styleUrls__ attribute to reference the CSS, it is required to set the view encapsulation to __None__:
6464

@@ -83,7 +83,7 @@ export class AppComponent {
8383
````
8484

8585

86-
1. In the same component class, define a `reportSource` object property specifying the category and the name of the report that will be displaued. For example, if the category is **Samples** and the report is **Dashboard**, the syntax will look as follows:
86+
1. In the same component class, define a `reportSource` object property specifying the category and the name of the report that will be displayed. For example, if the category is **Samples** and the report is **Dashboard**, the syntax will look as follows:
8787

8888
````TypeScript
8989
reportSource = {
@@ -93,7 +93,7 @@ reportSource = {
9393
````
9494
9595
96-
1. In the same component class, define a `reportServer` object property with a `url` string pointing to the Report Server for .NET, and `getPersonalAccessToken` callback, which will be executed when the the report viewer request from the server to render the report.
96+
1. In the same component class, define a `reportServer` object property with a `url` string pointing to the Report Server for .NET, and a `getPersonalAccessToken` callback, which will be executed when the report viewer requests from the server to render the report.
9797
9898
````JS
9999
reportServer = {
@@ -107,7 +107,7 @@ reportServer = {
107107
This is the **recommended** approach, but if an endpoint cannot be exposed, the token can be hardcoded in the callback: `getPersonalAccessToken: () => Promise.resolve('TOKEN_STRING')`
108108

109109

110-
1. In the HTML template of the component, define the `<tr-viewer>` element, and pass the defined properties to their corresponding properties of the Angular Wrapper Report Viewer::
110+
1. In the HTML template of the component, define the `<tr-viewer>` element, and pass the defined properties to their corresponding properties of the Angular Wrapper Report Viewer:
111111

112112
````HTML
113113
<tr-viewer

embedding-reports/display-reports-in-applications/web-application/native-angular-report-viewer/how-to-use-with-report-server-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ reportSource = {
9292
````
9393
9494
95-
1. In the same component class, define a `reportServer` object property with a `url` string pointing to the Report Server for .NET, and `getPersonalAccessToken` callback, which will be executed when the report viewer requests from the server to render the report.
95+
1. In the same component class, define a `reportServer` object property with a `url` string pointing to the Report Server for .NET, and a `getPersonalAccessToken` callback, which will be executed when the report viewer requests from the server to render the report.
9696
9797
````JS
9898
reportServer = {

embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/how-to-use-with-report-server-net.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The user account that will authenticate with the Report Server may be any User,
6767
````
6868

6969

70-
1. Set up an endpoint on the server that will securily return the token used by the Report Server for .NET to authorize. For example, creaate an environment variable in `launchSettins.json`**named 'RS_NET_TOKEN**, and store the token in it. Then, the endpoint can be configured to read and return the value of the environment variable:
70+
1. Set up an endpoint on the server that will securely return the token used by the Report Server for .NET to authorize. For example, create an environment variable in the `launchSettins.json` file named **'RS_NET_TOKEN**, and store the token in it. Then, the endpoint can be configured to read and return the value of the environment variable:
7171

7272
````C#
7373
app.MapGet("/rs-token", () =>
@@ -79,14 +79,14 @@ app.MapGet("/rs-token", () =>
7979
8080
For Blazor Web Assembly applications where the server is not available, the token can be injected on the `.RAZOR` page at build-time. Use `appsettings.{Environment}.json` files (they are bundled at build time), and read the token from the configuration.
8181
82-
1. Configure an `HttpClient` in the `Program.cs` file that will be ibjected on the `.RAZOR` page on the next step when we make a HTTP request to get the token from the server.
82+
1. Configure an `HttpClient` in the `Program.cs` file that will be injected on the `.RAZOR` page on the next step when we make an HTTP request to get the token from the server.
8383
8484
````C#
8585
builder.Services.AddHttpClient();
8686
````
8787

8888

89-
1. Create a method in the `RAZOR` or `RAZOR.CS` file of the Blazor component that return a `Task<string>` with the retrieved from the server token:
89+
1. Create a method in the `RAZOR` or `RAZOR.CS` file of the Blazor component that returns a `Task<string>` with the token retrieved from the Report Server:
9090

9191
````C#
9292
@inject HttpClient Http
@@ -150,4 +150,4 @@ builder.Services.AddHttpClient();
150150
## See Also
151151

152152
* [Integration with Telerik Reporting](https://docs.telerik.com/blazor-ui/integrations/reporting)
153-
* [Native Blazor Report Viewer Overview]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview%})
153+
* [Native Blazor Report Viewer Overview]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview%})

embedding-reports/display-reports-in-applications/web-application/react-report-viewer/how-to-use-with-report-server-net.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ npm install @progress/telerik-react-report-viewer
4141
<link href="https://kendo.cdn.telerik.com/themes/10.2.0/default/default-ocean-blue.css" rel="stylesheet" />
4242
````
4343

44-
>note To get the Sass-based Kendo UI themes, you can use either the pre-build CSS files, the Kendo UI CDN, or the NPM packages ([Getting the Sass-Based Themes](https://docs.telerik.com/kendo-ui/styles-and-layout/sass-themes/installation)).
44+
>note To get the Sass-based Kendo UI themes, you can use either the pre-built CSS files, the Kendo UI CDN, or the NPM packages ([Getting the Sass-Based Themes](https://docs.telerik.com/kendo-ui/styles-and-layout/sass-themes/installation)).
4545

46-
1. In the `.JSX` file where the report viewer will be used, create a `reportSource` object specifying the category and the name of the report that will be displaued. For example, if the category is **Samples** and the report is **Dashboard**, the syntax will look as follows:
46+
1. In the `.JSX` file where the report viewer will be used, create a `reportSource` object specifying the category and the name of the report that will be displayed. For example, if the category is **Samples** and the report is **Dashboard**, the syntax will look as follows:
4747

4848
````JS
4949
const reportSource = {
@@ -63,7 +63,7 @@ const viewerContainerStyle = {
6363
````
6464

6565

66-
1. In the same file, define a `reportServer` object with a `url` string pointing to the Report Server for .NET, and `getPersonalAccessToken` callback, which will be executed when the the report viewer request from the server to render the report.
66+
1. In the same file, define a `reportServer` object with a `url` string pointing to the Report Server for .NET, and a `getPersonalAccessToken` callback, which will be executed when the report viewer requests from the server to render the report.
6767

6868
````JS
6969
const reportServer = {

0 commit comments

Comments
 (0)