Skip to content

Commit 47538a9

Browse files
authored
fix
## 1.0.59 WebSocket Data Source Plugin Launch added connection string and fix plugin name
1 parent 6f53018 commit 47538a9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.0.60
4+
5+
WebSocket Data Source Plugin Launch added connection string and fix plugin name
36

47
## 1.0.59
58

src/datasource.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export class DataSource extends DataSourceWithBackend<
3636
path: replaceWithVars(path),
3737
}))
3838

39-
const result = super.query(newOptions);
40-
const queries = targets.filter(target => !target.hide).map(target => target);
39+
const result = super.query(newOptions)
40+
const queries = targets.filter(target => !target.hide).map(target => target)
4141

4242
return result.pipe(
4343
map(event => {

src/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{"name": "Websockets Payloads", "path": "img/assets/grafana-websockets-graphing.png"},
3434
{"name": "Streaming", "path": "img/assets/grafana-websockets-plugin-streaming.png"}
3535
],
36-
"version": "1.0.59",
36+
"version": "1.0.60",
3737
"updated": "%TODAY%"
3838
},
3939
"dependencies": {

0 commit comments

Comments
 (0)