Chore: Fix typos (#47816)

pull/47824/head
Florian Cassayre 4 years ago committed by GitHub
parent 7ddae870e7
commit d4f7ea9f01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/features/live/data/StreamingDataFrame.ts
  2. 4
      public/app/plugins/datasource/grafana-azure-monitor-datasource/dashboards/vMInsightsRG.json
  3. 4
      public/app/plugins/datasource/grafana-azure-monitor-datasource/dashboards/vMInsightsWorkspace.json
  4. 2
      public/app/plugins/panel/status-history/StatusHistoryPanel.tsx

@ -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
})`
);

@ -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",

@ -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",

@ -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>
);

Loading…
Cancel
Save