Fix: Broken empty state for agents dropdown. (#2143)

This commit is contained in:
Sivin Varghese
2021-04-21 14:24:03 +05:30
committed by GitHub
parent fdbc32f7c2
commit 6c7c5064d1

View File

@@ -48,8 +48,9 @@
selected-label=""
:placeholder="$t('CONVERSATION_SIDEBAR.SELECT.PLACEHOLDER')"
:allow-empty="true"
/>
<span slot="noResult">{{ $t('AGENT_MGMT.SEARCH.NO_RESULTS') }}</span>
>
<span slot="noResult">{{ $t('AGENT_MGMT.SEARCH.NO_RESULTS') }}</span>
</multiselect>
</div>
</div>
<div v-if="browser.browser_name" class="conversation--details">
@@ -367,5 +368,11 @@ export default {
.option__desc {
display: flex;
align-items: center;
&::v-deep .status-badge {
margin-right: var(--space-small);
min-width: 0;
flex-shrink: 0;
}
}
</style>