Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show default participant icon and fix label for reporter #4060

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ watch(
if (newVal) {
selectedParticipant.value = newVal
} else {
selectedParticipant.value = "Select assignee"
selectedParticipant.value = props.type === "assignee" ? "Select assignee" : "Select reporter"
}
},
{ immediate: true }
Expand Down Expand Up @@ -186,9 +186,15 @@ const toggleMenu = () => {
>
<template #prepend>
<v-avatar
v-if="
selectedParticipant !== 'Select assignee' &&
selectedParticipant !== 'Select reporter'
"
size="14px"
:style="{ background: getAvatarGradient(selectedParticipant) }"
/>
<v-icon v-else size="14px">mdi-account-reactivate</v-icon>
<!-- Show icon if selectedParticipant is default -->
</template>
<span style="font-size: 0.8125rem; font-weight: 500; color: rgb(60, 65, 73)">
{{ selectedParticipant }}
Expand Down
Loading