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

@@ -102,7 +102,7 @@ describe('ChartList', () => {
const callsD = fetchMock.calls(/chart\/\?q/);
expect(callsD).toHaveLength(1);
expect(callsD[0][0]).toMatchInlineSnapshot(
`"/http//localhost/api/v1/chart/?q={%22order_column%22:%22changed_on%22,%22order_direction%22:%22desc%22,%22page%22:0,%22page_size%22:25}"`,
`"/http//localhost/api/v1/chart/?q=(order_column:changed_on,order_direction:desc,page:0,page_size:25)"`,
);
});
});