From 345af83b79f0d8e4fb115108727be96034854a28 Mon Sep 17 00:00:00 2001 From: Will Sheldon <114631109+wssheldon@users.noreply.github.com> Date: Thu, 30 Nov 2023 14:36:25 -0800 Subject: [PATCH] Show default participant icon and fix label for reporter --- .../dispatch/src/participant/ParticipantSearchPopover.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/dispatch/static/dispatch/src/participant/ParticipantSearchPopover.vue b/src/dispatch/static/dispatch/src/participant/ParticipantSearchPopover.vue index c14d9f0408b8..7073f9761470 100644 --- a/src/dispatch/static/dispatch/src/participant/ParticipantSearchPopover.vue +++ b/src/dispatch/static/dispatch/src/participant/ParticipantSearchPopover.vue @@ -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 } @@ -186,9 +186,15 @@ const toggleMenu = () => { > {{ selectedParticipant }}