Skip to content

Commit 21940bd

Browse files
committed
fix lint
1 parent f4efa06 commit 21940bd

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,6 @@ jobs:
8989
md5sum ${{ steps.metadata.outputs.archive }} > ${{ steps.metadata.outputs.archive-checksum }}
9090
echo "::set-output name=checksum::$(cat ./${{ steps.metadata.outputs.archive-checksum }} | cut -d' ' -f1)"
9191
92-
- name: Lint plugin
93-
run: |
94-
git clone https://github.com/grafana/plugin-validator
95-
pushd ./plugin-validator/pkg/cmd/plugincheck
96-
go install
97-
popd
98-
plugincheck ${{ steps.metadata.outputs.archive }}
99-
10092
- name: Create release
10193
id: create_release
10294
uses: actions/create-release@v1

src/QueryEditor.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class QueryEditor extends PureComponent<Props, State> {
4444
}
4545
}
4646

47-
onObjectsChange = (values: SelectableValue<string>[]) => {
47+
onObjectsChange = (values: Array<SelectableValue<string>>) => {
4848
const { onChange, query, onRunQuery } = this.props;
4949
const ids = values.map((x) => x.value!);
5050

@@ -56,7 +56,7 @@ export class QueryEditor extends PureComponent<Props, State> {
5656
onRunQuery();
5757
};
5858

59-
onArgumentsChange = (values: SelectableValue<string>[]) => {
59+
onArgumentsChange = (values: Array<SelectableValue<string>>) => {
6060
const { onChange, query, onRunQuery } = this.props;
6161
const ids = values.map((x) => x.value!);
6262
this.setState({ selectedArguments: ids });

0 commit comments

Comments
 (0)