Skip to content

Commit bdd0e88

Browse files
committed
Fix linting.
1 parent 6b44519 commit bdd0e88

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/datasource.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
2626

2727
const promises = options.targets.map(
2828
({ spaceId, roomId, contextId, nodes, groupBy, method, refId, dimensions, filterBy, filterValue, hide }) => {
29-
if (hide) return null;
29+
if (hide) {
30+
return null;
31+
}
3032

3133
if (!spaceId || !roomId || !contextId) {
3234
const frame = new MutableDataFrame({

0 commit comments

Comments
 (0)