Hi,
In your theme user-alerts.php:
1.- Locate:
<?php while(osc_has_alerts()) { ?>
and replace it with:
<?php while(osc_has_alerts()) {
$alert = json_decode(osc_alert_search(), true); ?>
2.- A few lines below, replace:
<?php _e('Delete this alert', 'modern'); ?></a></div>
with:
<?php _e('Delete this alert', 'modern'); ?></a><span style="padding-left: 100px;"><?php echo $alert['sPattern']; ?></span></div>
(This if for Modern theme, if you're using another one look for line containing 'Delete this alert' and insert the new span in its right place).
Regards