fix: fetch all owners for dashboard, chart listview filters and properties modal (#9784)

This commit is contained in:
ʈᵃᵢ
2020-06-03 19:57:03 -07:00
committed by GitHub
parent 244677cf5e
commit d187d2887e
10 changed files with 117 additions and 69 deletions

View File

@@ -120,7 +120,11 @@ function PropertiesModal({ slice, onHide, onSave }: InternalProps) {
}, []);
const loadOptions = (input = '') => {
const query = rison.encode({ filter: input });
const query = rison.encode({
filter: input,
page_index: -1,
page_size: -1,
});
return SupersetClient.get({
endpoint: `/api/v1/chart/related/owners?q=${query}`,
}).then(