Chore: Fix typos (#47816)

This commit is contained in:
Florian Cassayre 2022-04-15 14:10:34 +02:00 committed by GitHub
parent 7ddae870e7
commit d4f7ea9f01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -301,7 +301,7 @@ export class StreamingDataFrame implements DataFrame {
if (values.length !== this.fields.length) {
if (this.fields.length) {
throw new Error(
`push message mismatch. Expected: ${this.fields.length}, recieved: ${values.length} (labels=${
`push message mismatch. Expected: ${this.fields.length}, received: ${values.length} (labels=${
this.pushMode === PushMode.labels
})`
);

View File

@ -1497,7 +1497,7 @@
"subscription": ""
}
],
"title": "Max Available Bytes Sent and Trend Line",
"title": "Max Available Bytes Sent and Trend Line",
"transformations": [
{
"id": "organize",
@ -1979,7 +1979,7 @@
"subscription": ""
}
],
"title": "Max Available Bytes Recieved and Trend Line",
"title": "Max Available Bytes Received and Trend Line",
"transformations": [
{
"id": "organize",

View File

@ -1494,7 +1494,7 @@
"subscription": ""
}
],
"title": "Max Available Bytes Sent and Trend Line",
"title": "Max Available Bytes Sent and Trend Line",
"transformations": [
{
"id": "organize",
@ -1970,7 +1970,7 @@
"subscription": ""
}
],
"title": "Max Available Bytes Recieved and Trend Line",
"title": "Max Available Bytes Received and Trend Line",
"transformations": [
{
"id": "organize",

View File

@ -43,7 +43,7 @@ export const StatusHistoryPanel: React.FC<TimelinePanelProps> = ({
<div className="panel-empty">
<p>
Too many points to visualize properly. <br />
Update the query to return fewer points. <br />({frames[0].length} points recieved)
Update the query to return fewer points. <br />({frames[0].length} points received)
</p>
</div>
);