Skip to content

Commit 03ecb9f

Browse files
author
guyplusplus
committed
Upgrade to 7.9.0
1 parent f695f11 commit 03ecb9f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ The plugin can then be installed like this for an apt installed Kibana.
185185

186186
```shell
187187
$ cd /usr/share/kibana
188-
$ sudo -u kibana ./bin/kibana-plugin install file:///home/john/downloads/vis_type_custom_form_filter_accounts_7.8.0_1.0.1.zip
189-
$ sudo -u kibana ./bin/kibana-plugin install https://github.com/guyplusplus/Kibana-Plugin-Custom-Form-Filter-Visualization/releases/download/7.8.0-1.0.1/vis_type_custom_form_filter_accounts_7.8.0_1.0.1.zip
188+
$ sudo -u kibana ./bin/kibana-plugin install file:///home/john/downloads/vis_type_custom_form_filter_accounts_7.9.0_1.0.2.zip
189+
$ sudo -u kibana ./bin/kibana-plugin install https://github.com/guyplusplus/Kibana-Plugin-Custom-Form-Filter-Visualization/releases/download/7.9.0-1.0.2/vis_type_custom_form_filter_accounts_7.9.0_1.0.2.zip
190190
```
191191

192192
Deleting then installing the plugin often fails for me. I fix it by running this command.

vis_type_custom_form_filter_accounts/kibana.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"version": "kibana",
44
"ui": true,
55
"server": true,
6-
"requiredPlugins": ["expressions", "visualizations", "data"]
6+
"requiredPlugins": ["kibanaReact", "kibanaUtils", "expressions", "visualizations", "data"]
77
}

vis_type_custom_form_filter_accounts/public/fetch_data.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export async function fetchData(core: CoreSetup, indexName, fieldName) {
8181
query,
8282
});
8383
const create = dataPluginStart.search.searchSource.create;
84-
const searchSource = create(initialSearchSourceState);
84+
const searchSource = await create(initialSearchSourceState || {});
8585
searchSource.setParent(undefined);
8686
const filters = [];
8787
/* a filter could be

0 commit comments

Comments
 (0)