Skip to content

Commit

Permalink
no need to refresh field list as data view picker is refreshing it fo…
Browse files Browse the repository at this point in the history
…r all consumers
  • Loading branch information
mattkime committed Oct 9, 2023
1 parent 44a9d28 commit 10c8157
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export async function loadDataView({
let fetchedDataView: DataView | null = null;
// try to fetch adhoc data view first
try {
fetchedDataView = fetchId ? await dataViews.get(fetchId, false, true) : null;
fetchedDataView = fetchId ? await dataViews.get(fetchId) : null;
if (fetchedDataView && !fetchedDataView.isPersisted()) {
return {
list: dataViewList || [],
Expand Down

0 comments on commit 10c8157

Please sign in to comment.