[FilterDropdownEntitySearchSelect] add missing displayAvatarUrl (#1071)

* [FilterDropdownEntitySearchSelect] add missing displayAvatarUrl

* add missing avatarUrl in activities

* remove console.log
This commit is contained in:
Weiko
2023-08-04 04:27:04 +02:00
committed by GitHub
parent 057fa0ae04
commit 11e7266f8a
3 changed files with 7 additions and 2 deletions

View File

@ -23,6 +23,7 @@ export const GET_ACTIVITIES_BY_TARGETS = gql`
firstName
lastName
displayName
avatarUrl
}
author {
id
@ -105,6 +106,7 @@ export const GET_ACTIVITY = gql`
firstName
lastName
displayName
avatarUrl
}
author {
id

View File

@ -62,6 +62,7 @@ export function FilterDropdownEntitySearchSelect({
operand: selectedOperandInDropdown,
type: filterDefinitionUsedInDropdown.type,
value: selectedEntity.id,
displayAvatarUrl: selectedEntity.avatarUrl,
});
}
}