Hide ASSIGN A QUEUE without disabling phone icon

170 views Asked by At

We wanted to hide/remove the ASSIGN A QUEUE on flex dial pad but it also disables the blue phone icon and it requires agent press enter on keyboard after entering phone number. Is it possible to hide queues section while having the phone icon clickable?

enter image description here

enter image description here

1

There are 1 answers

0
srikanth pasupuleti On

css file with below code worked.

.Twilio-OutboundDialerPanel-QueueSelect-Caption {
    display: none;
}
.Twilio-OutboundDialerPanel-QueueSelect {
    display: none !important;
}