Hide ASSIGN A QUEUE without disabling phone icon

191 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 best solutions below

0
On

css file with below code worked.

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