|
@@ -177,7 +177,10 @@ export default function FeedbackSearch() {
|
|
|
projectIds: projectIds?.map(String),
|
|
|
endpointParams,
|
|
|
}).then(
|
|
|
- tagValues => (tagValues as TagValue[]).map(({value}) => value),
|
|
|
+ tagValues =>
|
|
|
+ (tagValues as TagValue[])
|
|
|
+ .filter(tagValue => tagValue.name !== '')
|
|
|
+ .map(({value}) => value),
|
|
|
() => {
|
|
|
throw new Error('Unable to fetch event field values');
|
|
|
}
|