Full doctype name in Desktop Icon

Hi,

How to display complete name of doctype in desktop icon instead of showing ‘…’ ?

I don’t have any specific knowledge on how the desk does this, but usually it’s just css. Pop it up in the inspector and see if you can find an overflow property on the text node.

If you would like to go with making font size small then,
go to the file:

apps/frappe/frappe/core/page/desktop/desktop_module_icon.html

and add style like below

<span class="case-label-text" style="font-size: 10px">{{ _label }}</span>
Before


After

1 Like

Thanks a lot for telling the file location.

Changing div class=“case-label ellipsis” to div class=“case-label” also works.