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:
authorHitesh Kanwathirtha <digitalinfinity@users.noreply.github.com>2021-09-03 00:00:31 +0300
committerHitesh Kanwathirtha <digitalinfinity@users.noreply.github.com>2021-09-03 00:00:31 +0300
commit54a32849d4ed5368f2cf1e4fe0e1c6c853705bf7 (patch)
tree827e2670cdb038e1b16b50cb11bf862c89b1f5b0
parentf9741d3c3fa9f82627409a542700e3996655260b (diff)
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>