I've phpMyAdmin v5.2.2 (25-Apr-2025)
Adding the following config snippet in C:\wamp64\apps\phpmyadmin5.2.2\config.inc.php
worked!
If anyone could put some light in the comment, I'm not sure how a particular column is picked to display there. Even though I have multiple string columns there, tried reordering as well, but it chose title
over content
// ...
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; // Your pmadb name
$cfg['Servers'][$i]['relation'] = 'pma__relation'; // Relation table
$cfg['Servers'][$i]['table_info'] = 'pma__table_info'; // Display-column
$cfg['Servers'][$i]['column_info'] = 'pma__column_info';// Column transformation info
/* End of servers configuration */
?>