fix: Display missing agent avatar in bulk actions and reports (#4893)

This commit is contained in:
Fayaz Ahmed 2022-06-20 16:04:26 +05:30 committed by GitHub
parent f31c6d5de2
commit 3fa34991d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View file

@ -46,7 +46,8 @@
<li v-for="agent in filteredAgents" :key="agent.id">
<div class="agent-list-item" @click="assignAgent(agent)">
<thumbnail
src="agent.thumbnail"
:src="agent.thumbnail"
:status="agent.availability_status"
:username="agent.name"
size="22px"
class="margin-right-small"

View file

@ -17,7 +17,8 @@
<template slot="singleLabel" slot-scope="props">
<div class="reports-option__wrap">
<thumbnail
src="props.option.thumbnail"
:src="props.option.thumbnail"
:status="props.option.availability_status"
:username="props.option.name"
size="22px"
class="margin-right-small"
@ -30,7 +31,8 @@
<template slot="option" slot-scope="props">
<div class="reports-option__wrap">
<thumbnail
src="props.option.thumbnail"
:src="props.option.thumbnail"
:status="props.option.availability_status"
:username="props.option.name"
size="22px"
class="margin-right-small"