Hi there,
We have hardcoded it to shown only 20 characters as you can see on this files .../components/com_easysocial/themes/wireframe/search/mini/item.php
If you wanted to customizes them, you can increase those number on codes below.
[gist type="php"]
<span class="es-search-mini-result-name">
<?php if (JString::strlen($item->title) > 20) { ?>
//change those number accordingly
<?php echo JString::substr($item->title, 0, 20); ?> <?php echo JText::_('COM_EASYSOCIAL_ELLIPSES'); ?>
<?php } else { ?>
<?php echo $item->title; ?>
<?php } ?>
</span>
[/gist]