initial fix (#16212)

This commit is contained in:
Phillip Kelley-Dotson 2021-08-11 15:50:50 -07:00 committed by GitHub
parent b4555dfa4f
commit c79de7abd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,6 +132,12 @@ function ChartTable({
operator: 'chart_is_favorite', operator: 'chart_is_favorite',
value: true, value: true,
}); });
} else if (filterName === 'Examples') {
filters.push({
id: 'created_by',
operator: 'rel_o_m',
value: 0,
});
} }
return filters; return filters;
}; };