summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules-available/locationinfo/page.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules-available/locationinfo/page.inc.php b/modules-available/locationinfo/page.inc.php
index 2c24fbce..3ff80927 100644
--- a/modules-available/locationinfo/page.inc.php
+++ b/modules-available/locationinfo/page.inc.php
@@ -604,8 +604,8 @@ class Page_LocationInfo extends Page
$row['locations'] = implode(', ', $locs);
}
$len = mb_strlen($row['panelname']);
- if ($len < 5) {
- $row['panelname'] .= str_repeat('…', 5 - $len);
+ if ($len < 3) {
+ $row['panelname'] .= str_repeat(' ', 3 - $len);
}
if ($hasRunmode && isset($runmodes[$row['paneluuid']])) {
$row['assignedMachineCount'] = count($runmodes[$row['paneluuid']]);