Loki query editor is starting to work, had to make changes to explore query field in order to update query from the outside without unmount between

This commit is contained in:
Torkel Ödegaard
2019-01-23 17:44:22 +01:00
parent 90787a5299
commit 02083d71c8
12 changed files with 94 additions and 30 deletions

View File

@@ -32,7 +32,7 @@ function serializeParams(data: any) {
.join('&');
}
export default class LokiDatasource {
export class LokiDatasource {
languageProvider: LanguageProvider;
maxLines: number;
@@ -173,3 +173,5 @@ export default class LokiDatasource {
});
}
}
export default LokiDatasource;