We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b44519 commit bdd0e88Copy full SHA for bdd0e88
1 file changed
src/datasource.ts
@@ -26,7 +26,9 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
26
27
const promises = options.targets.map(
28
({ spaceId, roomId, contextId, nodes, groupBy, method, refId, dimensions, filterBy, filterValue, hide }) => {
29
- if (hide) return null;
+ if (hide) {
30
+ return null;
31
+ }
32
33
if (!spaceId || !roomId || !contextId) {
34
const frame = new MutableDataFrame({
0 commit comments