Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/spa-templates.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtak <34246760+mkArtakMSFT@users.noreply.github.com>2021-10-02 00:19:38 +0300
committerGitHub <noreply@github.com>2021-10-02 00:19:38 +0300
commit8090c657ae3500740ebda63a5ffd258b81b00890 (patch)
treea8fc3a233e6ea11dc5199405d49a01e886077d4b
parent55da9ce020682531efe3cac6b1dfa5ca4b8f97b0 (diff)
parent54a32849d4ed5368f2cf1e4fe0e1c6c853705bf7 (diff)
Merge pull request #17 from digitalinfinity/fix-label-spelling
Fix spelling of tableLabel in FetchData.js
-rw-r--r--src/content/React-CSharp/ClientApp/src/components/FetchData.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/React-CSharp/ClientApp/src/components/FetchData.js b/src/content/React-CSharp/ClientApp/src/components/FetchData.js
index d1a9f91..f0f96b6 100644
--- a/src/content/React-CSharp/ClientApp/src/components/FetchData.js
+++ b/src/content/React-CSharp/ClientApp/src/components/FetchData.js
@@ -17,7 +17,7 @@ export class FetchData extends Component {
static renderForecastsTable(forecasts) {
return (
- <table className='table table-striped' aria-labelledby="tabelLabel">
+ <table className='table table-striped' aria-labelledby="tableLabel">
<thead>
<tr>
<th>Date</th>
@@ -47,7 +47,7 @@ export class FetchData extends Component {
return (
<div>
- <h1 id="tabelLabel" >Weather forecast</h1>
+ <h1 id="tableLabel" >Weather forecast</h1>
<p>This component demonstrates fetching data from the server.</p>
{contents}
</div>