mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix: fetch all owners for dashboard, chart listview filters and properties modal (#9784)
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user